Compare commits

..
Author SHA1 Message Date
stumpylog 013fe0baff Fix: select_related in remove_doclink() to avoid signal-triggered reload
Same pattern as the update_or_create() fix: target_doc_field_instance was
fetched without select_related, so its .document/.field weren't cached
when .save() fired the post_save signal -- auditlog's receiver touching
.document re-fetched it, once per (source, target) pair being unlinked
with no batching across calls. Also benefits the single-document PATCH
path in serialisers.py, which calls the same helper.

Broadened the removal test's query assertion now that both sides are fixed.
2026-08-27 09:42:14 -07:00
stumpylog 02c547e856 Fix: cache document/field on updated CustomFieldInstance rows, not just created ones
update_or_create() fetches an existing row via plain .get() before saving
it, so passing already-resolved document/field objects as lookup kwargs
never actually cached them on that row.  Replaced with an explicit
get-or-build + assign + save so both paths get the cache.

Also: only build docs_by_id when there's something to add (a remove-only
call has no use for it), and resolve the removal pass's source documents
via select_related instead, so it doesn't force-load irrelevant documents.

Added tests for the update-path caching and the removal-path batching.
2026-08-27 09:42:14 -07:00
stumpylog 9321d8772f Perf: batch CustomField/Document lookups in modify_custom_fields
modify_custom_fields looped documents x fields, re-.get()-ing the
CustomField queryset per iteration and Document.objects.get() per doc
for DOCUMENTLINK fields -- same shape as the earlier custom_fields
serializer N+1 (#13779), just nested one level deeper. Resolve both
into dicts once up front instead. Also pass the resolved objects
(not bare ids) to update_or_create so newly-created CustomFieldInstance
rows cache their field/document FK, avoiding a re-fetch when auditlog's
post_save receiver calls str(instance) (which touches .field.name).

docs_by_id defers `content` (the one field guaranteed both large and
unused by this function or its receivers) rather than using .only(),
since .only() would just turn the filename-generation signal's other
field access into a deferred-reload N+1.
2026-08-27 09:42:14 -07:00
60 changed files with 1196 additions and 902 deletions
+17 -13
View File
@@ -2749,7 +2749,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3600,11 +3600,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5350,7 +5350,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
</trans-unit>
<trans-unit id="5342432350421167093" datatype="html">
@@ -6512,6 +6512,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
<source>Open link</source>
@@ -6524,8 +6528,8 @@
<context context-type="linenumber">14</context>
</context-group>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
@@ -7380,7 +7384,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
</trans-unit>
<trans-unit id="1070687661569746428" datatype="html">
@@ -8212,7 +8216,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
</trans-unit>
<trans-unit id="8659635229098859487" datatype="html">
@@ -8230,7 +8234,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
</trans-unit>
<trans-unit id="2696010339872056565" datatype="html">
@@ -9064,28 +9068,28 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
</trans-unit>
<trans-unit id="1015374532025907183" datatype="html">
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
</trans-unit>
<trans-unit id="1537670659786159738" datatype="html">
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
</trans-unit>
<trans-unit id="2520291319362448498" datatype="html">
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
</trans-unit>
<trans-unit id="1215215387232313677" datatype="html">
@@ -47,8 +47,8 @@
<i-bs width="0.9em" height="0.9em" name="file-text" class="me-1"></i-bs><span>{{document.title}}</span>
</a>
} @else {
<span class="badge bg-light text-muted">
<i-bs width="0.9em" height="0.9em" name="exclamation-triangle-fill" class="me-1"></i-bs><span i18n>Unavailable</span>
<span class="badge bg-light text-muted" (click)="unselect(document)" (mousedown)="$event.stopImmediatePropagation()" type="button" title="Remove link" i18n-title>
<i-bs width="0.9em" height="0.9em" name="exclamation-triangle-fill" class="me-1"></i-bs><span i18n>Not found</span>
</span>
}
</div>
@@ -151,23 +151,6 @@ describe('DocumentLinkComponent', () => {
expect(component.selectedDocuments).toEqual([])
})
it('should preserve and neutrally label unavailable document IDs', async () => {
jest.spyOn(documentService, 'getFew').mockReturnValue(
of({
count: 0,
all: [],
results: [],
})
)
component.writeValue([99])
await fixture.whenStable()
expect(component.selectedDocuments).toEqual([{ id: 99 }])
expect(fixture.nativeElement.textContent).toContain('Unavailable')
expect(fixture.nativeElement.textContent).not.toContain('Not found')
})
it('should support unselect', () => {
const getSpy = jest.spyOn(documentService, 'getFew')
getSpy.mockImplementation((ids) => {
@@ -184,15 +167,6 @@ describe('DocumentLinkComponent', () => {
expect(component.selectedDocuments).toEqual([documents[1]])
})
it('should not unselect documents when disabled', () => {
component.disabled = true
component.selectedDocuments = [documents[0]]
component.unselect(documents[0])
expect(component.selectedDocuments).toEqual([documents[0]])
})
it('should use correct compare, trackBy functions', () => {
expect(component.compareDocuments(documents[0], { id: 1 })).toBeTruthy()
expect(component.compareDocuments(documents[0], { id: 2 })).toBeFalsy()
@@ -101,7 +101,7 @@ export class DocumentLinkComponent
.subscribe((documentResults) => {
this.loading.set(false)
this.selectedDocuments = documentIDs.map(
(id) => documentResults.results.find((d) => d.id === id) ?? { id }
(id) => documentResults.results.find((d) => d.id === id) ?? {}
)
super.writeValue(documentIDs)
})
@@ -142,8 +142,6 @@ export class DocumentLinkComponent
}
unselect(document: Document): void {
if (this.disabled) return
this.selectedDocuments = this.selectedDocuments.filter(
(d) => d && d.id !== document.id
)
@@ -114,23 +114,13 @@
</div>
</button>
<div ngbDropdownMenu aria-labelledby="dropdownSend" class="shadow">
@if (permissionService.currentUserCan(PermissionAction.Add, PermissionType.ShareLinkBundle)) {
<button ngbDropdownItem (click)="createShareLinkBundle()" [disabled]="!canSendSelection">
<i-bs name="link" class="me-1"></i-bs><ng-container i18n>Create a share link bundle</ng-container>
</button>
}
@if (permissionService.currentUserCan(PermissionAction.View, PermissionType.ShareLinkBundle)) {
<button ngbDropdownItem (click)="manageShareLinkBundles()">
<i-bs name="list-ul" class="me-1"></i-bs><ng-container i18n>Manage share link bundles</ng-container>
</button>
}
@if (
emailEnabled &&
(permissionService.currentUserCan(PermissionAction.Add, PermissionType.ShareLinkBundle) ||
permissionService.currentUserCan(PermissionAction.View, PermissionType.ShareLinkBundle))
) {
<div class="dropdown-divider"></div>
}
@if (emailEnabled) {
<button ngbDropdownItem (click)="emailSelected()" [disabled]="!canSendSelection">
<i-bs name="envelope" class="me-1"></i-bs><ng-container i18n>Email</ng-container>
@@ -19,11 +19,7 @@ import { StoragePath } from 'src/app/data/storage-path'
import { Tag } from 'src/app/data/tag'
import { FilterPipe } from 'src/app/pipes/filter.pipe'
import { DocumentListViewService } from 'src/app/services/document-list-view.service'
import {
PermissionAction,
PermissionsService,
PermissionType,
} from 'src/app/services/permissions.service'
import { PermissionsService } from 'src/app/services/permissions.service'
import { CorrespondentService } from 'src/app/services/rest/correspondent.service'
import { CustomFieldsService } from 'src/app/services/rest/custom-fields.service'
import { DocumentTypeService } from 'src/app/services/rest/document-type.service'
@@ -256,54 +252,6 @@ describe('BulkEditorComponent', () => {
).toBe(true)
})
it('should only show permitted share link bundle actions', () => {
permissionsService.initialize(
[
permissionsService.getPermissionCode(
PermissionAction.Add,
PermissionType.ShareLinkBundle
),
],
{ is_superuser: false } as any
)
fixture.detectChanges()
expect(fixture.nativeElement.textContent).toContain(
'Create a share link bundle'
)
expect(fixture.nativeElement.textContent).not.toContain(
'Manage share link bundles'
)
permissionsService.initialize(
[
permissionsService.getPermissionCode(
PermissionAction.View,
PermissionType.ShareLinkBundle
),
],
{ is_superuser: false } as any
)
fixture.detectChanges()
expect(fixture.nativeElement.textContent).not.toContain(
'Create a share link bundle'
)
expect(fixture.nativeElement.textContent).toContain(
'Manage share link bundles'
)
permissionsService.initialize([], { is_superuser: false } as any)
fixture.detectChanges()
expect(fixture.nativeElement.textContent).not.toContain(
'Create a share link bundle'
)
expect(fixture.nativeElement.textContent).not.toContain(
'Manage share link bundles'
)
})
it('should apply selection data to correspondents menu', () => {
jest.spyOn(permissionsService, 'currentUserCan').mockReturnValue(true)
fixture.detectChanges()
@@ -101,7 +101,7 @@ export class BulkEditorComponent
private toastService = inject(ToastService)
private storagePathService = inject(StoragePathService)
private customFieldService = inject(CustomFieldsService)
public readonly permissionService = inject(PermissionsService)
private permissionService = inject(PermissionsService)
private savedViewService = inject(SavedViewService)
private readonly shareLinkBundleService = inject(ShareLinkBundleService)
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">E-pos</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="needs-translation">Remove link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="needs-translation">Open link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="needs-translation">Not found</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="needs-translation">Use formatted filename</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Sluit in:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="needs-translation">Archived files</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="needs-translation">Original files</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="needs-translation">Email</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="needs-translation">Remove link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="needs-translation">Open link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="needs-translation">Not found</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="needs-translation">Use formatted filename</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="needs-translation">Include:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="needs-translation">Archived files</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="needs-translation">Original files</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">البريد الإلكتروني</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">إزالة الرابط</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">فتح الرابط</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">غير موجود</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">استخدام اسم الملف المنسق</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">يحتوي على:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">الملفات المؤرشفة</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">الملفات الأصلية</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="needs-translation">Email</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="needs-translation">Remove link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="needs-translation">Open link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="needs-translation">Not found</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="needs-translation">Use formatted filename</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="needs-translation">Include:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="needs-translation">Archived files</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="needs-translation">Original files</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">Имейл</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Премахни връзка</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Отваряне на връзка</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Не е намерено</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Използвайте форматирано име на файл</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Включете:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Архивирани файлове</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Оригинални файлове</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">Email</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Eliminar enllaç</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Obre enllaç</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">No trobat</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Administra paquets d'enllaços compartits</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Utilitza nom arxiu formatat</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="translated">Crea paquet de compartició d'enllaç</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Inclou:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Arxius arxivats</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Fitxers originals</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">E-mail</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Odstranit odkaz</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Otevřít odkaz</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Nenalezeno</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Spravovat balíčky sdílení odkazů</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Použít formátovaný název souboru</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="translated">Vytvořit balíček sdílení odkazů</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Zahrnout:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Archivované soubory</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Původní soubory</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="needs-translation">Email</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="needs-translation">Remove link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="needs-translation">Open link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="needs-translation">Not found</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="needs-translation">Use formatted filename</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="needs-translation">Include:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="needs-translation">Archived files</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="needs-translation">Original files</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">E-Mail</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Verknüpfung entfernen</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Link öffnen</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Nicht gefunden</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Freigabelink-Pakete verwalten</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Formatierten Dateinamen verwenden</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="translated">Freigabelink-Paket erstellen</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Einschliessen:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Archivierte Dateien</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Originaldateien</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="final">E-Mail</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="final">Verknüpfung entfernen</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html" approved="yes">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="final">Link öffnen</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html" approved="yes">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="final">Nicht gefunden</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html" approved="yes">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Freigabelink-Pakete verwalten</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="translated">Download-Optionen</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="final">Formatierten Dateinamen verwenden</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="translated">Freigabelink-Paket erstellen</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="final">Einschließen:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="final">Archivierte Dateien</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="final">Originaldateien</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">E-mail</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="needs-translation">Remove link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="needs-translation">Open link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="needs-translation">Not found</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="needs-translation">Use formatted filename</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Συμπερίληψη:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="needs-translation">Archived files</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="needs-translation">Original files</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">E-mail</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Eliminar enlace</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Abrir enlace</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">No encontrado</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Usar nombre de archivo formateado</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Incluir:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Archivos archivados</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Archivos originales</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="needs-translation">Email</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="needs-translation">Remove link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="needs-translation">Open link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="needs-translation">Not found</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="needs-translation">Use formatted filename</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="needs-translation">Include:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="needs-translation">Archived files</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="needs-translation">Original files</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">ایمیل</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">حذف پیوند</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">لینک باز</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">یافت نشد</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">از نام پرونده فرمت شده استفاده کنید</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">شامل:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">پرونده های بایگانی شده</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">پرونده های اصلی</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">Sähköposti</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Poista linkki</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Avaa linkki</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Ei löytynyt</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Käytä muotoiltua tiedostonimeä</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Sisällytä:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Arkistoidut tiedostot</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Alkuperäiset tiedostot</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="final">Adresse électronique</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Supprimer le lien</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html" approved="yes">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="final">Ouvrir le lien</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Non trouvé</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Gérer les lots de liens de partage</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Utiliser le nom de fichier formaté</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Inclure :</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Fichiers archivés</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Fichiers originaux</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">דוא"ל</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">הסירו קישור</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">פתח קישור</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">לא נמצא</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">השתמש בשם קובץ מפורמט</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="translated">צור חבילת קישורי שיתוף</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">כולל:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">קובצי ארכיון</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">קבצים מקוריים</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="needs-translation">Email</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="needs-translation">Remove link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="needs-translation">Open link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="needs-translation">Not found</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="needs-translation">Use formatted filename</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="needs-translation">Include:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="needs-translation">Archived files</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="needs-translation">Original files</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">E-pošta</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Ukloni vezu</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Otvori vezu</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Nije pronađeno</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Upravljaj paketima linkova za dijeljenje</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Koristi formatirani naziv datoteke</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="translated">Kreiraj paket linka za dijeljenje</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Uključi:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Arhivirane datoteke</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Originalne datoteke</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">E-mail</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Hivatkozás eltávolítása</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Link megnyitása</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Nem található</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Formázott fájlnév használata</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Tartalmazza:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Archivált fájlok</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Eredeti fájlok</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">Surel</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Hapus tautan</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Buka tautan</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Tidak ditemukan</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Gunakan nama berkas terformat</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="needs-review-translation" state-qualifier="leveraged-tm">Sertakan:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Berkas terarsip</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Berkas asli</target>
</trans-unit>
+40 -36
View File
@@ -2115,7 +2115,7 @@
<context context-type="sourcefile">src/app/components/document-list/filter-editor/filter-editor.component.html</context>
<context context-type="linenumber">21</context>
</context-group>
<target state="translated">Pulisci ricerca</target>
<target state="needs-translation">Clear search</target>
</trans-unit>
<trans-unit id="3570013039254960445" datatype="html">
<source>Search tasks</source>
@@ -2439,7 +2439,7 @@
<context context-type="sourcefile">src/app/components/admin/tasks/tasks.component.html</context>
<context context-type="linenumber">211</context>
</context-group>
<target state="translated">Visualizza dettagli attività</target>
<target state="needs-translation">View task details</target>
</trans-unit>
<trans-unit id="1536087519743707362" datatype="html">
<source>Dismiss</source>
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3563,7 +3563,7 @@
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">42</context>
</context-group>
<target state="translated">Menu utente</target>
<target state="needs-translation">User menu</target>
</trans-unit>
<trans-unit id="2448391510242468907" datatype="html">
<source>Logged in as <x id="INTERPOLATION" equiv-text="{{this.settingsService.displayName}}"/></source>
@@ -3823,7 +3823,7 @@
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">375</context>
</context-group>
<target state="translated">Configura controllo degli aggiornamenti</target>
<target state="needs-translation">Configure update checking</target>
</trans-unit>
<trans-unit id="1542489069631984294" datatype="html">
<source>Sidebar views updated</source>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -4195,7 +4195,7 @@
<context context-type="sourcefile">src/app/components/common/confirm-dialog/merge-as-versions-confirm-dialog/merge-as-versions-confirm-dialog.component.html</context>
<context context-type="linenumber">16,17</context>
</context-group>
<target state="translated">Versioni (prime più vecchie):</target>
<target state="needs-translation">Versions (oldest first):</target>
</trans-unit>
<trans-unit id="6705735915615634619" datatype="html">
<source>{VAR_PLURAL, plural, =1 {One page} other {<x id="INTERPOLATION"/> pages}}</source>
@@ -4215,7 +4215,7 @@
<context context-type="sourcefile">src/app/components/common/confirm-dialog/merge-as-versions-confirm-dialog/merge-as-versions-confirm-dialog.component.html</context>
<context context-type="linenumber">40,41</context>
</context-group>
<target state="translated">Versione attuale</target>
<target state="needs-translation">Current version</target>
</trans-unit>
<trans-unit id="7991662994966139727" datatype="html">
<source>Drag to reorder.</source>
@@ -4223,7 +4223,7 @@
<context context-type="sourcefile">src/app/components/common/confirm-dialog/merge-as-versions-confirm-dialog/merge-as-versions-confirm-dialog.component.html</context>
<context context-type="linenumber">47,48</context>
</context-group>
<target state="translated">Trascina per riordinare.</target>
<target state="needs-translation">Drag to reorder.</target>
</trans-unit>
<trans-unit id="994016933065248559" datatype="html">
<source>Documents:</source>
@@ -4347,7 +4347,7 @@
<context context-type="sourcefile">src/app/components/common/confirm-dialog/reprocess-confirm-dialog/reprocess-confirm-dialog.component.html</context>
<context context-type="linenumber">16,17</context>
</context-group>
<target state="translated">Utilizza OCR remoto</target>
<target state="needs-translation">Use remote OCR</target>
</trans-unit>
<trans-unit id="6733578401091585663" datatype="html">
<source>Sends the document to the configured remote OCR service, which may incur costs.</source>
@@ -4363,7 +4363,7 @@
<context context-type="sourcefile">src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html</context>
<context context-type="linenumber">9</context>
</context-group>
<target state="translated">Ruota in senso antiorario</target>
<target state="needs-translation">Rotate counterclockwise</target>
</trans-unit>
<trans-unit id="631338357809243389" datatype="html">
<source>Rotate clockwise</source>
@@ -4371,7 +4371,7 @@
<context context-type="sourcefile">src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html</context>
<context context-type="linenumber">19</context>
</context-group>
<target state="translated">Ruota in senso orario</target>
<target state="needs-translation">Rotate clockwise</target>
</trans-unit>
<trans-unit id="8157388568390631653" datatype="html">
<source>Note that only PDFs will be rotated.</source>
@@ -4587,7 +4587,7 @@
<context context-type="sourcefile">src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html</context>
<context context-type="linenumber">146</context>
</context-group>
<target state="translated">Rimuovi query</target>
<target state="needs-translation">Remove query</target>
</trans-unit>
<trans-unit id="3184700926171002527" datatype="html">
<source>Any</source>
@@ -4631,7 +4631,7 @@
<context context-type="sourcefile">src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html</context>
<context context-type="linenumber">188</context>
</context-group>
<target state="translated">Rimuovi espressione</target>
<target state="needs-translation">Remove expression</target>
</trans-unit>
<trans-unit id="6630533861307510614" datatype="html">
<source>Clear created relative date</source>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">E-mail</target>
</trans-unit>
@@ -6551,7 +6551,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">471,472</context>
</context-group>
<target state="translated">Applica suggerimenti per</target>
<target state="needs-translation">Apply suggestions for</target>
</trans-unit>
<trans-unit id="6859826074028847234" datatype="html">
<source>Suggestions for fields that are not selected are discarded.</source>
@@ -6567,7 +6567,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">486,487</context>
</context-group>
<target state="translated">Crea elementi mancanti</target>
<target state="needs-translation">Create missing items</target>
</trans-unit>
<trans-unit id="449779688394460071" datatype="html">
<source>Create suggested tags, correspondents and document types that do not exist yet.</source>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Rimuovi link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Apri link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Non trovato</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Gestisci i pacchetti di link di condivisione</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Usa nome file formattato</target>
</trans-unit>
@@ -9715,7 +9719,7 @@
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/add-existing-document-version-dialog/add-existing-document-version-dialog.component.html</context>
<context context-type="linenumber">17,18</context>
</context-group>
<target state="translated">Aggiungi versione</target>
<target state="needs-translation">Add version</target>
</trans-unit>
<trans-unit id="2369423116644077158" datatype="html">
<source>Versions</source>
@@ -9751,7 +9755,7 @@
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
<context context-type="linenumber">35,36</context>
</context-group>
<target state="translated">Carica una nuova versione</target>
<target state="needs-translation">Upload a new version</target>
</trans-unit>
<trans-unit id="278763911843514709" datatype="html">
<source>Use an existing document</source>
@@ -9759,7 +9763,7 @@
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
<context context-type="linenumber">44,45</context>
</context-group>
<target state="translated">Usa un documento esistente</target>
<target state="needs-translation">Use an existing document</target>
</trans-unit>
<trans-unit id="1906507263389090131" datatype="html">
<source>Existing</source>
@@ -9767,7 +9771,7 @@
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.html</context>
<context context-type="linenumber">47,48</context>
</context-group>
<target state="translated">Esistente</target>
<target state="needs-translation">Existing</target>
</trans-unit>
<trans-unit id="3119565892291077820" datatype="html">
<source>Uploading version...</source>
@@ -9887,7 +9891,7 @@
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.ts</context>
<context context-type="linenumber">324</context>
</context-group>
<target state="translated">Documento esistente aggiunto come una versione.</target>
<target state="needs-translation">Existing document added as a version.</target>
</trans-unit>
<trans-unit id="8552490241798412439" datatype="html">
<source>Error adding existing document as a version</source>
@@ -9895,7 +9899,7 @@
<context context-type="sourcefile">src/app/components/document-detail/document-version-dropdown/document-version-dropdown.component.ts</context>
<context context-type="linenumber">329</context>
</context-group>
<target state="translated">Errore nell'aggiungere un documento esistente come una versione</target>
<target state="needs-translation">Error adding existing document as a version</target>
</trans-unit>
<trans-unit id="1603172228799869455" datatype="html">
<source>Toggle document metadata</source>
@@ -9903,7 +9907,7 @@
<context context-type="sourcefile">src/app/components/document-detail/metadata-collapse/metadata-collapse.component.html</context>
<context context-type="linenumber">3</context>
</context-group>
<target state="translated">Attiva/Disattiva metadati del documento</target>
<target state="needs-translation">Toggle document metadata</target>
</trans-unit>
<trans-unit id="6299008920007331381" datatype="html" approved="yes">
<source>Edit:</source>
@@ -10003,13 +10007,13 @@
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.ts</context>
<context context-type="linenumber">1023</context>
</context-group>
<target state="translated">Unisci come versioni</target>
<target state="needs-translation">Merge as versions</target>
</trans-unit>
<trans-unit id="7251533806673754434" datatype="html">
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="translated">Crea un pacchetto di link di condivisione</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Includi:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">File archiviati</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">File originali</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">メールアドレス</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">リンクを削除</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">リンクを開く</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">見つかりません</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">フォーマット済みのファイル名を使用</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">以下を含める:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">アーカイブされたファイル</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">元のファイル</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">이메일</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">링크 삭제</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">링크 열기</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">찾을 수 없음</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">형식화된 파일명 사용</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">포함:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">보관된 파일</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">원본 파일</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="needs-translation">Email</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="needs-translation">Remove link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="needs-translation">Open link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="needs-translation">Not found</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="needs-translation">Use formatted filename</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="needs-translation">Include:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="needs-translation">Archived files</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="needs-translation">Original files</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="needs-translation">Email</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="needs-translation">Remove link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="needs-translation">Open link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="needs-translation">Not found</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="needs-translation">Use formatted filename</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="needs-translation">Include:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="needs-translation">Archived files</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="needs-translation">Original files</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">E-pasts</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="needs-translation">Remove link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Atvērt saiti</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="needs-translation">Not found</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="needs-translation">Use formatted filename</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="needs-translation">Include:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="needs-translation">Archived files</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="needs-translation">Original files</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="needs-translation">Email</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="needs-translation">Remove link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="needs-translation">Open link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="needs-translation">Not found</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="needs-translation">Use formatted filename</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="needs-translation">Include:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="needs-translation">Archived files</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="needs-translation">Original files</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="needs-translation">Email</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="needs-translation">Remove link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="needs-translation">Open link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="needs-translation">Not found</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="needs-translation">Use formatted filename</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="needs-translation">Include:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="needs-translation">Archived files</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="needs-translation">Original files</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">E-mailadres</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Link verwijderen</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Link openen</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Niet gevonden</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Beheer deel-links</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Gebruik geformatteerde bestandsnaam</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Inclusief:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Gearchiveerde bestanden</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Originele bestanden</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">E-post</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Fjern kobling</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Åpne kobling</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Ikke funnet</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Administrer lenkepakker</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Bruk formatert filnavn</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="translated">Lag en delingslenkepakke</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Inkluder:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Arkiverte filer</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Originale filer</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">Adres e-mail</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Usuń link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Otwórz link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Nie znaleziono</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Zarządzaj pakietami linków udostępniających</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Użyj sformatowanej nazwy pliku</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="translated">Utwórz pakiet linków do udostępniania</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Zawrzyj:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Zarchiwizowane pliki</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Oryginalne pliki</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">E-mail</target>
</trans-unit>
@@ -7141,6 +7141,10 @@ Erro ao enviar documentos por e-mail</target>
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Remover link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7155,13 +7159,13 @@ Erro ao enviar documentos por e-mail</target>
</context-group>
<target state="translated">Abrir link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Não encontrado</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8112,7 +8116,7 @@ Erro ao enviar documentos por e-mail</target>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9050,7 +9054,7 @@ Erro ao enviar documentos por e-mail</target>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9070,7 +9074,7 @@ Erro ao enviar documentos por e-mail</target>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Usar nome do arquivo formatado</target>
</trans-unit>
@@ -10010,7 +10014,7 @@ Erro ao enviar documentos por e-mail</target>
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10018,7 +10022,7 @@ Erro ao enviar documentos por e-mail</target>
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Incluir:</target>
</trans-unit>
@@ -10026,7 +10030,7 @@ Erro ao enviar documentos por e-mail</target>
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Arquivos arquivados</target>
</trans-unit>
@@ -10034,7 +10038,7 @@ Erro ao enviar documentos por e-mail</target>
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Arquivos originais</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">Email</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Remover link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Abrir link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Não encontrado</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="needs-translation">Use formatted filename</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Incluir:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="needs-translation">Archived files</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="needs-translation">Original files</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">Poștă electronică</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Elimină link-ul</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Deschide link-ul</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Nu a fost găsit</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Folosește numele fișierului formatat</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Inclusiv:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Fișiere arhivate</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Fișiere originale</target>
</trans-unit>
+29 -25
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">Электронная почта</target>
</trans-unit>
@@ -6543,7 +6543,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">468,469</context>
</context-group>
<target state="translated">Документ будет передан в настроенную службу ИИ для предложений. Примите во внимание цену и конфиденциальность.</target>
<target state="needs-translation">The document will be sent to the configured AI service for suggestions. Consider costs and privacy.</target>
</trans-unit>
<trans-unit id="3473589590476379802" datatype="html">
<source>Apply suggestions for</source>
@@ -6551,7 +6551,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">471,472</context>
</context-group>
<target state="translated">Применить советы для</target>
<target state="needs-translation">Apply suggestions for</target>
</trans-unit>
<trans-unit id="6859826074028847234" datatype="html">
<source>Suggestions for fields that are not selected are discarded.</source>
@@ -6559,7 +6559,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">476,477</context>
</context-group>
<target state="translated">Предложения для невыбранных полей удаляются.</target>
<target state="needs-translation">Suggestions for fields that are not selected are discarded.</target>
</trans-unit>
<trans-unit id="1137167921211640884" datatype="html">
<source>Create missing items</source>
@@ -6567,7 +6567,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">486,487</context>
</context-group>
<target state="translated">Создать недостающие элементы</target>
<target state="needs-translation">Create missing items</target>
</trans-unit>
<trans-unit id="449779688394460071" datatype="html">
<source>Create suggested tags, correspondents and document types that do not exist yet.</source>
@@ -6575,7 +6575,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">488,489</context>
</context-group>
<target state="translated">Создать предложенные теги, корреспондентов и типов документов, которые не существуют.</target>
<target state="needs-translation">Create suggested tags, correspondents and document types that do not exist yet.</target>
</trans-unit>
<trans-unit id="5192325026233872238" datatype="html">
<source>Overwrite existing values</source>
@@ -6583,7 +6583,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">496,497</context>
</context-group>
<target state="translated">Перезаписать текущие значения</target>
<target state="needs-translation">Overwrite existing values</target>
</trans-unit>
<trans-unit id="9010697250406492150" datatype="html">
<source>Apply suggestions even if the document already has a value. Tags are always added, never replaced.</source>
@@ -6591,7 +6591,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">498,499</context>
</context-group>
<target state="translated">Применить предложения, даже если документ уже заполнен. Теги всегда добавляются, не заменяются.</target>
<target state="needs-translation">Apply suggestions even if the document already has a value. Tags are always added, never replaced.</target>
</trans-unit>
<trans-unit id="4626030417479279989" datatype="html">
<source>Consume Folder</source>
@@ -6711,7 +6711,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">158</context>
</context-group>
<target state="translated">Применить советы ИИ</target>
<target state="needs-translation">Apply AI suggestions</target>
</trans-unit>
<trans-unit id="5701618810648052610" datatype="html" approved="yes">
<source>Title</source>
@@ -6747,7 +6747,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="translated">Дата создания</target>
<target state="needs-translation">Created date</target>
</trans-unit>
<trans-unit id="4522609911791833187" datatype="html">
<source>Has any of these tags</source>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Убрать ссылку</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Открыть ссылку</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="translated">Недоступно</target>
<target state="translated">Не найден</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -7257,7 +7261,7 @@
<context context-type="sourcefile">src/app/components/common/input/select/select.component.html</context>
<context context-type="linenumber">41</context>
</context-group>
<target state="translated">Удалить элемент</target>
<target state="needs-translation">Remove item</target>
</trans-unit>
<trans-unit id="3686284950598311784" datatype="html">
<source>Private</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Управление наборами ссылок</target>
</trans-unit>
@@ -8361,7 +8365,7 @@
<context context-type="sourcefile">src/app/components/common/suggestions-dropdown/suggestions-dropdown.component.html</context>
<context context-type="linenumber">13,14</context>
</context-group>
<target state="translated">Совет ИИ</target>
<target state="translated">Рекомендация</target>
</trans-unit>
<trans-unit id="6934085657687954669" datatype="html">
<source>Show suggestions</source>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="translated">Параметры загрузки</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Использовать форматированное имя файла</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="translated">Создать набор ссылок</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Включить:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Архивные файлы</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Исходные файлы</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">E-mail</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="needs-translation">Remove link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="needs-translation">Open link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="needs-translation">Not found</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="needs-translation">Use formatted filename</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Zahrnúť:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="needs-translation">Archived files</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="needs-translation">Original files</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">E-pošta</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Odstrani povezavo</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Odpri povezavo</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Ni najdeno</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Upravljanje paketov povezav za skupno rabo</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Uporaba formatiranega imena datoteke</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="translated">Ustvarite paket povezav za skupno rabo</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="needs-review-translation" state-qualifier="leveraged-tm">Vključi:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Arhivirane datoteke</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Izvirne datoteke</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">[SQ] Email</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Hiq lidhje</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Hap lidhje</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Nuk u gjet</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Manage lidhje ndarjeje bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Përdor emrin e formatuar të skedarit</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="translated">Krijo a lidhje ndarjeje bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Përfshi:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Të arkivuar skedarë</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Origjinal skedarë</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">Imejl</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Ukloni link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Otvori vezu</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Nije pronađen</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Upravljajte paketima linkova za deljenje</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Koristi formatirani naziv fajla</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="translated">Napravi paket linkova za deljenje</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Uključi:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Arhivski fajlovi</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Originalni fajlovi</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">E-post</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Ta bort länk</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Öppna länk</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Hittades inte</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">Hantera delningslänkpaket</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="translated">Nedladdningsalternativ</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Använd formaterat filnamn</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="translated">Skapa ett delningslänkpaket</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Inkludera:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Arkiverade filer</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Originalfiler</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">อีเมล</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="needs-translation">Remove link</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="needs-translation">Open link</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="needs-translation">Not found</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="needs-translation">Use formatted filename</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">รวม:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="needs-translation">Archived files</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="needs-translation">Original files</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5839,7 +5839,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> krite
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="needs-review-translation" state-qualifier="leveraged-tm">E-posta</target>
</trans-unit>
@@ -7142,6 +7142,10 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> krite
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Linki sil</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7156,13 +7160,13 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> krite
</context-group>
<target state="translated">Linki aç</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Bulunamadı</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8113,7 +8117,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> krite
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9051,7 +9055,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> krite
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9071,7 +9075,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> krite
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Formatlanmış dosya adını kullan</target>
</trans-unit>
@@ -10011,7 +10015,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> krite
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10019,7 +10023,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> krite
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Dahil et:</target>
</trans-unit>
@@ -10027,7 +10031,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> krite
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Arşivlenen dosyalar</target>
</trans-unit>
@@ -10035,7 +10039,7 @@ tüm <x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> krite
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Orijinal dosyalar</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">Ел. пошта</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">Видалити посилання</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">Відкрити посилання</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">Не знайдено</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">Використовувати відформатовану назву файлу</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">Включити:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">Архівовані файли</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">Оригінальні файли</target>
</trans-unit>
+18 -14
View File
@@ -2975,7 +2975,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3911,11 +3911,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5861,7 +5861,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="final">Email</target>
</trans-unit>
@@ -7172,6 +7172,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="final">Xóa liên kết</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html" approved="yes">
@@ -7186,13 +7190,13 @@
</context-group>
<target state="final">Mở liên kết</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html" approved="yes">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="final">Không tìm thấy</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html" approved="yes">
<source>Search for documents</source>
@@ -8147,7 +8151,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9095,7 +9099,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9115,7 +9119,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="final">Sử dụng tên tệp định dạng</target>
</trans-unit>
@@ -10065,7 +10069,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10073,7 +10077,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="final">Bao gồm:</target>
</trans-unit>
@@ -10081,7 +10085,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="final">Các tệp lưu trữ</target>
</trans-unit>
@@ -10089,7 +10093,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="final">Tệp gốc</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">Email</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">删除链接</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">打开链接</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">页面未找到</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="translated">管理分享链接包</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">使用格式化文件名</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="translated">创建共享链接包</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="needs-review-translation" state-qualifier="leveraged-tm">包含:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">归档文件</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">原始文件</target>
</trans-unit>
+18 -14
View File
@@ -2973,7 +2973,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">179</context>
<context context-type="linenumber">169</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/document-attributes/custom-fields/custom-fields.component.html</context>
@@ -3893,11 +3893,11 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">142</context>
<context context-type="linenumber">132</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">151</context>
<context context-type="linenumber">141</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/document-card-large/document-card-large.component.html</context>
@@ -5837,7 +5837,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="translated">電子郵件</target>
</trans-unit>
@@ -7140,6 +7140,10 @@
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">43</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">50</context>
</context-group>
<target state="translated">移除連結</target>
</trans-unit>
<trans-unit id="1388712764439031120" datatype="html">
@@ -7154,13 +7158,13 @@
</context-group>
<target state="translated">開啟連結</target>
</trans-unit>
<trans-unit id="5643561794785412000" datatype="html">
<source>Unavailable</source>
<trans-unit id="6595008830732269870" datatype="html">
<source>Not found</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/input/document-link/document-link.component.html</context>
<context context-type="linenumber">51,52</context>
</context-group>
<target state="needs-translation">Unavailable</target>
<target state="translated">找不到</target>
</trans-unit>
<trans-unit id="5676637575587497817" datatype="html">
<source>Search for documents</source>
@@ -8111,7 +8115,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">124</context>
<context context-type="linenumber">121</context>
</context-group>
<target state="needs-translation">Manage share link bundles</target>
</trans-unit>
@@ -9049,7 +9053,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">154</context>
<context context-type="linenumber">144</context>
</context-group>
<target state="needs-translation">Download options</target>
</trans-unit>
@@ -9069,7 +9073,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">170,171</context>
<context context-type="linenumber">160,161</context>
</context-group>
<target state="translated">使用格式化檔案名稱</target>
</trans-unit>
@@ -10009,7 +10013,7 @@
<source>Create a share link bundle</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">119</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Create a share link bundle</target>
</trans-unit>
@@ -10017,7 +10021,7 @@
<source>Include:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">157,158</context>
<context context-type="linenumber">147,148</context>
</context-group>
<target state="translated">包含:</target>
</trans-unit>
@@ -10025,7 +10029,7 @@
<source>Archived files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">161,162</context>
<context context-type="linenumber">151,152</context>
</context-group>
<target state="translated">封存檔案</target>
</trans-unit>
@@ -10033,7 +10037,7 @@
<source>Original files</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/document-list/bulk-editor/bulk-editor.component.html</context>
<context context-type="linenumber">165,166</context>
<context context-type="linenumber">155,156</context>
</context-group>
<target state="translated">原始檔案</target>
</trans-unit>
+53 -22
View File
@@ -305,18 +305,32 @@ def modify_custom_fields(
else [(field, None) for field in add_custom_fields]
)
custom_fields = CustomField.objects.filter(
custom_fields_by_id: dict[int, CustomField] = {
cf.id: cf
for cf in CustomField.objects.filter(
id__in=[int(field) for field, _ in add_custom_fields],
).distinct()
)
}
# Deferred, not `.only()`: signal receivers touch other Document fields,
# and `.only("pk")` would just turn that into a per-document reload.
# `content` is the one field both large and unused here. Skipped
# entirely for a remove-only call -- the removal pass below resolves
# its own documents.
docs_by_id: dict[int, Document] = (
{
doc.id: doc
for doc in Document.objects.filter(id__in=affected_docs).defer("content")
}
if add_custom_fields
else {}
)
for field_id, value in add_custom_fields:
for doc_id in affected_docs:
defaults = {}
custom_field = custom_fields.get(id=field_id)
if custom_field:
custom_field = custom_fields_by_id[field_id]
value_field = CustomFieldInstance.TYPE_TO_DATA_STORE_NAME_MAP[
custom_field.data_type
]
defaults[value_field] = value
for doc_id in affected_docs:
defaults = {value_field: value}
if (
custom_field.data_type == CustomField.FieldDataType.DOCUMENTLINK
and value
@@ -324,27 +338,41 @@ def modify_custom_fields(
):
# Prevent self-linking
continue
CustomFieldInstance.objects.update_or_create(
document_id=doc_id,
field_id=field_id,
defaults=defaults,
# Not update_or_create(): it fetches an existing row via plain
# `.get()` before calling .save(), so a signal receiver touching
# `.field`/`.document` (e.g. auditlog) on that save re-fetches
# per instance regardless of what's passed in as lookup kwargs.
# Assigning the cached objects ourselves before .save() avoids
# that for both the create and update case.
try:
instance = CustomFieldInstance.objects.get(
document=docs_by_id[doc_id],
field=custom_field,
)
except CustomFieldInstance.DoesNotExist:
instance = CustomFieldInstance(
document=docs_by_id[doc_id],
field=custom_field,
)
instance.document = docs_by_id[doc_id]
instance.field = custom_field
for attr, val in defaults.items():
setattr(instance, attr, val)
instance.save()
if custom_field.data_type == CustomField.FieldDataType.DOCUMENTLINK:
doc = Document.objects.get(id=doc_id)
reflect_doclinks(doc, custom_field, value)
reflect_doclinks(docs_by_id[doc_id], custom_field, value)
# For doc link fields that are being removed, remove symmetrical links
# For doc link fields being removed, remove symmetrical links.
# select_related here avoids resolving every affected document up front.
for doclink_being_removed_instance in CustomFieldInstance.objects.filter(
document_id__in=affected_docs,
field__id__in=remove_custom_fields,
field__data_type=CustomField.FieldDataType.DOCUMENTLINK,
value_document_ids__isnull=False,
):
).select_related("field", "document"):
for target_doc_id in doclink_being_removed_instance.value:
remove_doclink(
document=Document.objects.get(
id=doclink_being_removed_instance.document.id,
),
document=doclink_being_removed_instance.document,
field=doclink_being_removed_instance.field,
target_doc_id=target_doc_id,
)
@@ -1177,10 +1205,13 @@ def remove_doclink(
"""
Removes a 'symmetrical' link to `document` from the target document's existing custom field instance
"""
target_doc_field_instance = CustomFieldInstance.objects.filter(
document_id=target_doc_id,
field=field,
).first()
# select_related: a signal receiver (auditlog) touches .document/.field
# on save() below -- without this, that's a per-call reload query.
target_doc_field_instance = (
CustomFieldInstance.objects.filter(document_id=target_doc_id, field=field)
.select_related("document", "field")
.first()
)
if (
target_doc_field_instance is not None
and document.id in target_doc_field_instance.value
-30
View File
@@ -93,36 +93,6 @@ class TestDocumentSearchApi(DirectoriesMixin, APITestCase):
self.assertEqual(response.data["count"], 0)
self.assertEqual(len(results), 0)
def test_search_after_restore_from_trash(self) -> None:
"""
GIVEN:
- Indexed document that was moved to the trash
WHEN:
- The document is restored from the trash
THEN:
- The document is searchable again without a reindex
"""
doc = Document.objects.create(
title="invoice",
content="the thing i bought at a shop and paid with bank account",
checksum="A",
pk=1,
)
get_backend().add_or_update(doc)
self.assertEqual(self.client.get("/api/documents/?query=shop").data["count"], 1)
self.client.delete(f"/api/documents/{doc.pk}/")
self.assertEqual(self.client.get("/api/documents/?query=shop").data["count"], 0)
response = self.client.post(
"/api/trash/",
{"action": "restore", "documents": [doc.pk]},
)
self.assertEqual(response.status_code, status.HTTP_200_OK)
self.assertEqual(self.client.get("/api/documents/?query=shop").data["count"], 1)
def test_simple_text_search(self) -> None:
tagged = Tag.objects.create(name="invoice")
matching_doc = Document.objects.create(
+198
View File
@@ -6,7 +6,9 @@ from unittest import mock
import pikepdf
from django.contrib.auth.models import Group
from django.contrib.auth.models import User
from django.db import connection
from django.test import TestCase
from django.test.utils import CaptureQueriesContext
from guardian.shortcuts import assign_perm
from guardian.shortcuts import get_groups_with_perms
from guardian.shortcuts import get_users_with_perms
@@ -344,6 +346,202 @@ class TestBulkEdit(DirectoriesMixin, TestCase):
assert _cf_3 is not None
self.assertNotIn(self.doc3.id, _cf_3.value)
def test_modify_custom_fields_batches_field_lookup(self) -> None:
"""
GIVEN:
- Several documents are being bulk-edited to add several custom
fields at once
WHEN:
- modify_custom_fields runs
THEN:
- Each CustomField is resolved with one batched query total, not
once per (field, document) pair
"""
docs = [
Document.objects.create(checksum=f"batch-{i}", title=f"batch-{i}")
for i in range(6)
]
fields = [
CustomField.objects.create(
name=f"Batch Field {i}",
data_type=CustomField.FieldDataType.STRING,
)
for i in range(4)
]
with CaptureQueriesContext(connection) as ctx:
bulk_edit.modify_custom_fields(
[doc.id for doc in docs],
add_custom_fields=[field.id for field in fields],
remove_custom_fields=[],
)
field_lookups = [
q
for q in ctx.captured_queries
if 'FROM "documents_customfield"' in q["sql"]
]
self.assertEqual(
len(field_lookups),
1,
"Expected a single batched query to resolve the custom fields, "
f"got {len(field_lookups)}: {field_lookups}",
)
for doc in docs:
self.assertEqual(doc.custom_fields.count(), len(fields))
def test_modify_custom_fields_batches_document_lookup_for_documentlink(
self,
) -> None:
"""
GIVEN:
- Several documents are being bulk-edited to add a DOCUMENTLINK
custom field at once
WHEN:
- modify_custom_fields runs
THEN:
- The Document rows needed to reflect the symmetrical links are
resolved with one batched query total, not once per document
"""
docs = [
Document.objects.create(checksum=f"link-{i}", title=f"link-{i}")
for i in range(6)
]
target = Document.objects.create(checksum="link-target", title="link-target")
doclink_field = CustomField.objects.create(
name="Related",
data_type=CustomField.FieldDataType.DOCUMENTLINK,
)
with CaptureQueriesContext(connection) as ctx:
bulk_edit.modify_custom_fields(
[doc.id for doc in docs],
add_custom_fields={doclink_field.id: [target.id]},
remove_custom_fields=[],
)
single_document_lookups = [
q
for q in ctx.captured_queries
if 'FROM "documents_document"' in q["sql"]
and '"documents_document"."id" = ' in q["sql"]
]
self.assertEqual(
len(single_document_lookups),
0,
"Expected document rows to come from a batched query, not "
f"per-document lookups, got: {single_document_lookups}",
)
for doc in docs:
self.assertEqual(
doc.custom_fields.get(field=doclink_field).value,
[target.id],
)
def test_modify_custom_fields_update_caches_document_and_field(self) -> None:
"""
GIVEN:
- Several documents already have an instance of a custom field
WHEN:
- modify_custom_fields runs again for the same field, updating
the existing instances rather than creating new ones
THEN:
- No per-instance `.document`/`.field` reload query is issued
(e.g. by auditlog's post_save receiver touching them)
"""
docs = [
Document.objects.create(checksum=f"update-{i}", title=f"update-{i}")
for i in range(6)
]
field = CustomField.objects.create(
name="Update Field",
data_type=CustomField.FieldDataType.STRING,
)
bulk_edit.modify_custom_fields(
[doc.id for doc in docs],
add_custom_fields=[field.id],
remove_custom_fields=[],
)
with CaptureQueriesContext(connection) as ctx:
bulk_edit.modify_custom_fields(
[doc.id for doc in docs],
add_custom_fields={field.id: "updated value"},
remove_custom_fields=[],
)
single_row_reloads = [
q
for q in ctx.captured_queries
if ('FROM "documents_document"' in q["sql"] and '."id" = ' in q["sql"])
or ('FROM "documents_customfield"' in q["sql"] and '."id" = ' in q["sql"])
]
self.assertEqual(
single_row_reloads,
[],
"Expected no per-instance document/field reload queries when "
f"updating existing custom field instances, got: {single_row_reloads}",
)
for doc in docs:
self.assertEqual(
doc.custom_fields.get(field=field).value,
"updated value",
)
def test_modify_custom_fields_removes_symmetrical_doclinks_batched(self) -> None:
"""
GIVEN:
- Several source documents link to a shared target via a doc
link field
WHEN:
- The field is removed from all of them in one call
THEN:
- The symmetrical links are removed from the target
- No per-document lookup query is issued, on either side
"""
target = Document.objects.create(checksum="rm-target", title="rm-target")
docs = [
Document.objects.create(checksum=f"rm-{i}", title=f"rm-{i}")
for i in range(6)
]
field = CustomField.objects.create(
name="Related",
data_type=CustomField.FieldDataType.DOCUMENTLINK,
)
bulk_edit.modify_custom_fields(
[doc.id for doc in docs],
add_custom_fields={field.id: [target.id]},
remove_custom_fields=[],
)
self.assertEqual(
target.custom_fields.get(field=field).value,
[d.id for d in docs],
)
with CaptureQueriesContext(connection) as ctx:
bulk_edit.modify_custom_fields(
[doc.id for doc in docs],
add_custom_fields=[],
remove_custom_fields=[field.id],
)
single_document_lookups = [
q
for q in ctx.captured_queries
if 'FROM "documents_document"' in q["sql"]
and '"documents_document"."id" = ' in q["sql"]
]
self.assertEqual(
single_document_lookups,
[],
"Expected batched document resolution, not per-document lookups, "
f"got: {single_document_lookups}",
)
self.assertEqual(target.custom_fields.get(field=field).value, [])
def test_modify_custom_fields_doclink_self_link(self) -> None:
"""
GIVEN:
+1 -8
View File
@@ -5432,15 +5432,8 @@ class TrashView(ListModelMixin, PassUserMixin):
return HttpResponseForbidden("Insufficient permissions")
action = serializer.validated_data.get("action")
if action == "restore":
restored = list(Document.deleted_objects.filter(id__in=doc_ids))
for doc in restored:
for doc in Document.deleted_objects.filter(id__in=doc_ids).all():
doc.restore(strict=False)
if restored:
from documents.search import get_backend
with get_backend().batch_update() as batch:
for doc in restored:
batch.add_or_update(doc)
elif action == "empty":
if doc_ids is None:
doc_ids = [doc.id for doc in docs]
+8 -8
View File
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-08-26 16:49+0000\n"
"PO-Revision-Date: 2026-08-28 00:22\n"
"PO-Revision-Date: 2026-08-26 17:04\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"Language: it_IT\n"
@@ -878,7 +878,7 @@ msgstr "Elimina in blocco"
#: documents/models.py:769
msgid "Apply AI Suggestions"
msgstr "Applica Suggerimenti IA"
msgstr ""
#: documents/models.py:778 documents/models.py:1349
msgid "Scheduled"
@@ -1379,23 +1379,23 @@ msgstr "Sposta nel cestino"
#: documents/models.py:1676
msgid "Remote OCR"
msgstr "OCR Remoto"
msgstr ""
#: documents/models.py:1680
msgid "Apply AI suggestions"
msgstr "Applica suggerimenti IA"
msgstr ""
#: documents/models.py:1687
msgid "Document type"
msgstr "Tipo di documento"
msgstr ""
#: documents/models.py:1688
msgid "Storage path"
msgstr "Percorso di archiviazione"
msgstr ""
#: documents/models.py:1689
msgid "Created date"
msgstr "Data di creazione"
msgstr ""
#: documents/models.py:1692
msgid "Workflow Action Type"
@@ -1548,7 +1548,7 @@ msgstr "Password da provare quando si rimuove la protezione PDF. Separare con vi
#: documents/models.py:1929
msgid "AI suggestion fields"
msgstr "Campi di suggerimento IA"
msgstr ""
#: documents/models.py:1933
msgid "Which of the AI-suggested fields to apply to the document."
+17 -17
View File
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-08-26 16:49+0000\n"
"PO-Revision-Date: 2026-08-28 03:20\n"
"PO-Revision-Date: 2026-08-26 17:04\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"Language: ru_RU\n"
@@ -878,7 +878,7 @@ msgstr "Массовое удаление"
#: documents/models.py:769
msgid "Apply AI Suggestions"
msgstr "Применить советы ИИ"
msgstr ""
#: documents/models.py:778 documents/models.py:1349
msgid "Scheduled"
@@ -1283,11 +1283,11 @@ msgstr "пусковые механизмы автоматизации"
#: documents/models.py:1563
msgid "email subject"
msgstr "тема письма"
msgstr "Тема письма"
#: documents/models.py:1567
msgid "The subject of the email, can include some placeholders, see documentation."
msgstr "Тема письма может включать некоторые плейсхолдеры, см. документацию."
msgstr "Тело (сообщение) письма, может включать некоторые плейсхолдеры, см. документацию."
#: documents/models.py:1573
msgid "email body"
@@ -1295,7 +1295,7 @@ msgstr "текст письма"
#: documents/models.py:1576
msgid "The body (message) of the email, can include some placeholders, see documentation."
msgstr "Текст письма может включать некоторые плейсхолдеры, см. документацию."
msgstr "Тело (сообщение) письма, может включать некоторые плейсхолдеры, см. документацию."
#: documents/models.py:1582
msgid "emails to"
@@ -1383,19 +1383,19 @@ msgstr "Удаленное распознавание (OCR)"
#: documents/models.py:1680
msgid "Apply AI suggestions"
msgstr "Применить советы ИИ"
msgstr ""
#: documents/models.py:1687
msgid "Document type"
msgstr "Тип документа"
msgstr ""
#: documents/models.py:1688
msgid "Storage path"
msgstr "Путь к хранилищу"
msgstr ""
#: documents/models.py:1689
msgid "Created date"
msgstr "Дата создания"
msgstr ""
#: documents/models.py:1692
msgid "Workflow Action Type"
@@ -1548,27 +1548,27 @@ msgstr "Пароли для удаления защиты PDF. Разделит
#: documents/models.py:1929
msgid "AI suggestion fields"
msgstr "Предложенные ИИ поля"
msgstr ""
#: documents/models.py:1933
msgid "Which of the AI-suggested fields to apply to the document."
msgstr "Какие из предлагаемых ИИ полей применить к документу."
msgstr ""
#: documents/models.py:1938
msgid "create missing objects"
msgstr "создать недостающие объекты"
msgstr ""
#: documents/models.py:1941
msgid "Create suggested tags, correspondents, document types and storage paths that do not already exist instead of skipping them."
msgstr "Создать предложенные теги, корреспондентов, типы документов и пути хранения, которые еще не существуют, вместо того чтобы пропускать их."
msgstr ""
#: documents/models.py:1947
msgid "overwrite existing values"
msgstr "перезаписать текущие значения"
msgstr ""
#: documents/models.py:1950
msgid "Apply suggestions even if the document already has a value for that field. Tags are always added to, never replaced."
msgstr "Применяйте предложения, даже если документ уже имеет значение для поля. Теги всегда добавляются, не заменяются."
msgstr ""
#: documents/models.py:1956
msgid "workflow action"
@@ -2474,11 +2474,11 @@ msgstr "Кодировка, используемая при общении с п
#: paperless_mail/models.py:60
msgid "account type"
msgstr "тип учетной записи"
msgstr "Тип учетной записи"
#: paperless_mail/models.py:66
msgid "refresh token"
msgstr "refresh-токен"
msgstr "Refresh-токен"
#: paperless_mail/models.py:70
msgid "The refresh token to use for token authentication e.g. with oauth2."