From df5af5c8adbb6892f26c8240da8565c9a9fb143b Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 16 Apr 2025 00:07:08 -0700 Subject: [PATCH 1/9] Fix: correctly handle dict data with webhook (#9674) --- src/documents/signals/handlers.py | 34 +++++++++++++++++---------- src/documents/tests/test_workflows.py | 16 ++++++++++++- 2 files changed, 37 insertions(+), 13 deletions(-) diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index ae15992ed..16b3a01ea 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -622,20 +622,30 @@ def send_webhook( as_json: bool = False, ): try: + post_args = { + "url": url, + "headers": headers, + "files": files, + } if as_json: - httpx.post( - url, - json=data, - files=files, - headers=headers, - ).raise_for_status() + post_args["json"] = data + elif isinstance(data, dict): + post_args["data"] = data else: - httpx.post( - url, - content=data, - files=files, - headers=headers, - ).raise_for_status() + post_args["content"] = data + + httpx.post( + **post_args, + ).raise_for_status() + logger.info( + f"Webhook sent to {url}", + ) + except Exception as e: + logger.error( + f"Failed attempt sending webhook to {url}: {e}", + ) + raise e + logger.info( f"Webhook sent to {url}", ) diff --git a/src/documents/tests/test_workflows.py b/src/documents/tests/test_workflows.py index 3006594cc..1c0c4449c 100644 --- a/src/documents/tests/test_workflows.py +++ b/src/documents/tests/test_workflows.py @@ -2614,7 +2614,7 @@ class TestWorkflows( ) mock_post.assert_called_once_with( - "http://paperless-ngx.com", + url="http://paperless-ngx.com", content="Test message", headers={}, files=None, @@ -2623,6 +2623,20 @@ class TestWorkflows( expected_str = "Webhook sent to http://paperless-ngx.com" self.assertIn(expected_str, cm.output[0]) + # with dict + send_webhook( + url="http://paperless-ngx.com", + data={"message": "Test message"}, + headers={}, + files=None, + ) + mock_post.assert_called_with( + url="http://paperless-ngx.com", + data={"message": "Test message"}, + headers={}, + files=None, + ) + @mock.patch("httpx.post") def test_workflow_webhook_send_webhook_retry(self, mock_http): mock_http.return_value.raise_for_status = mock.Mock( From 62f46b706e027ce68c8fe4b2598a3a5096f3d78f Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 17 Apr 2025 21:15:53 -0700 Subject: [PATCH 2/9] Fix: another doc link fix (#9700) --- .../common/input/document-link/document-link.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/components/common/input/document-link/document-link.component.ts b/src-ui/src/app/components/common/input/document-link/document-link.component.ts index c5b613ba4..afe539b69 100644 --- a/src-ui/src/app/components/common/input/document-link/document-link.component.ts +++ b/src-ui/src/app/components/common/input/document-link/document-link.component.ts @@ -94,8 +94,8 @@ export class DocumentLinkComponent .pipe(takeUntil(this.unsubscribeNotifier)) .subscribe((documentResults) => { this.loading = false - this.selectedDocuments = documentIDs.map((id) => - documentResults.results.find((d) => d.id === id) + this.selectedDocuments = documentIDs.map( + (id) => documentResults.results.find((d) => d.id === id) ?? {} ) super.writeValue(documentIDs) }) From 1b0aa193bdfa2d9138824aed4886d2885909dd8a Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 19 Apr 2025 14:26:53 -0700 Subject: [PATCH 3/9] Fix: fix missing archive file size --- src/documents/views.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/documents/views.py b/src/documents/views.py index 27f8ed51f..4cd100c2d 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -673,7 +673,9 @@ class DocumentViewSet( document_cached_metadata = get_metadata_cache(doc.pk) archive_metadata = None - archive_filesize = None + archive_filesize = ( + self.get_filesize(doc.archive_path) if doc.has_archive_version else None + ) if document_cached_metadata is not None: original_metadata = document_cached_metadata.original_metadata archive_metadata = document_cached_metadata.archive_metadata @@ -682,7 +684,6 @@ class DocumentViewSet( original_metadata = self.get_metadata(doc.source_path, doc.mime_type) if doc.has_archive_version: - archive_filesize = self.get_filesize(doc.archive_path) archive_metadata = self.get_metadata( doc.archive_path, "application/pdf", From abf910fd93ae54d973c83be60c58e0a814edc407 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 19 Apr 2025 15:02:33 -0700 Subject: [PATCH 4/9] Fix: fix breaking api change to document notes user field (#9714) --- src/documents/serialisers.py | 14 ++++++++++++++ src/documents/tests/test_api_documents.py | 20 ++++++++++++++++++++ src/paperless/settings.py | 4 ++-- 3 files changed, 36 insertions(+), 2 deletions(-) diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py index 782f4d6c8..b6f61103f 100644 --- a/src/documents/serialisers.py +++ b/src/documents/serialisers.py @@ -877,6 +877,20 @@ class NotesSerializer(serializers.ModelSerializer): fields = ["id", "note", "created", "user"] ordering = ["-created"] + def to_representation(self, instance): + ret = super().to_representation(instance) + + request = self.context.get("request") + api_version = int( + request.version if request else settings.REST_FRAMEWORK["DEFAULT_VERSION"], + ) + + if api_version < 8: + user_id = ret["user"]["id"] + ret["user"] = user_id + + return ret + class DocumentSerializer( OwnedObjectSerializer, diff --git a/src/documents/tests/test_api_documents.py b/src/documents/tests/test_api_documents.py index a0a380e41..0af1f5040 100644 --- a/src/documents/tests/test_api_documents.py +++ b/src/documents/tests/test_api_documents.py @@ -2227,6 +2227,26 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): }, ) + def test_docnote_serializer_v7(self): + doc = Document.objects.create( + title="test", + mime_type="application/pdf", + content="this is a document which will have notes!", + ) + Note.objects.create( + note="This is a note.", + document=doc, + user=self.user, + ) + self.assertEqual( + self.client.get( + f"/api/documents/{doc.pk}/", + headers={"Accept": "application/json; version=7"}, + format="json", + ).data["notes"][0]["user"], + self.user.id, + ) + def test_create_note(self): """ GIVEN: diff --git a/src/paperless/settings.py b/src/paperless/settings.py index 361854a93..743151ef1 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -342,10 +342,10 @@ REST_FRAMEWORK = { "rest_framework.authentication.SessionAuthentication", ], "DEFAULT_VERSIONING_CLASS": "rest_framework.versioning.AcceptHeaderVersioning", - "DEFAULT_VERSION": "7", + "DEFAULT_VERSION": "8", # Make sure these are ordered and that the most recent version appears # last. See api.md#api-versioning when adding new versions. - "ALLOWED_VERSIONS": ["1", "2", "3", "4", "5", "6", "7"], + "ALLOWED_VERSIONS": ["1", "2", "3", "4", "5", "6", "7", "8"], # DRF Spectacular default schema "DEFAULT_SCHEMA_CLASS": "drf_spectacular.openapi.AutoSchema", } From f52ebc7bf014eebd07bee00b7ef35f3829a102f6 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 19 Apr 2025 15:10:34 -0700 Subject: [PATCH 5/9] Fix: preserve non-ASCII filenames in document downloads (#9702) --- .../document-detail.component.ts | 11 +++---- src-ui/src/app/utils/http.spec.ts | 31 +++++++++++++++++++ src-ui/src/app/utils/http.ts | 23 ++++++++++++++ 3 files changed, 59 insertions(+), 6 deletions(-) create mode 100644 src-ui/src/app/utils/http.spec.ts create mode 100644 src-ui/src/app/utils/http.ts diff --git a/src-ui/src/app/components/document-detail/document-detail.component.ts b/src-ui/src/app/components/document-detail/document-detail.component.ts index d9d78206f..632a2de30 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.ts +++ b/src-ui/src/app/components/document-detail/document-detail.component.ts @@ -77,6 +77,7 @@ import { StoragePathService } from 'src/app/services/rest/storage-path.service' import { UserService } from 'src/app/services/rest/user.service' import { SettingsService } from 'src/app/services/settings.service' import { ToastService } from 'src/app/services/toast.service' +import { getFilenameFromContentDisposition } from 'src/app/utils/http' import { ISODateAdapter } from 'src/app/utils/ngb-iso-date-adapter' import * as UTIF from 'utif' import { ConfirmDialogComponent } from '../common/confirm-dialog/confirm-dialog.component' @@ -999,12 +1000,10 @@ export class DocumentDetailComponent .get(downloadUrl, { observe: 'response', responseType: 'blob' }) .subscribe({ next: (response: HttpResponse) => { - const filename = response.headers - .get('Content-Disposition') - ?.split(';') - ?.find((part) => part.trim().startsWith('filename=')) - ?.split('=')[1] - ?.replace(/['"]/g, '') + const contentDisposition = response.headers.get('Content-Disposition') + const filename = + getFilenameFromContentDisposition(contentDisposition) || + this.document.title const blob = new Blob([response.body], { type: response.body.type, }) diff --git a/src-ui/src/app/utils/http.spec.ts b/src-ui/src/app/utils/http.spec.ts new file mode 100644 index 000000000..ab3421ded --- /dev/null +++ b/src-ui/src/app/utils/http.spec.ts @@ -0,0 +1,31 @@ +import { getFilenameFromContentDisposition } from './http' + +describe('getFilenameFromContentDisposition', () => { + it('should extract filename from Content-Disposition header with filename*', () => { + const header = "attachment; filename*=UTF-8''example%20file.txt" + expect(getFilenameFromContentDisposition(header)).toBe('example file.txt') + }) + + it('should extract filename from Content-Disposition header with filename=', () => { + const header = 'attachment; filename="example-file.txt"' + expect(getFilenameFromContentDisposition(header)).toBe('example-file.txt') + }) + + it('should prioritize filename* over filename if both are present', () => { + const header = + 'attachment; filename="fallback.txt"; filename*=UTF-8\'\'preferred%20file.txt' + const result = getFilenameFromContentDisposition(header) + expect(result).toBe('preferred file.txt') + }) + + it('should gracefully fall back to null', () => { + // invalid UTF-8 sequence + expect( + getFilenameFromContentDisposition("attachment; filename*=UTF-8''%E0%A4%A") + ).toBeNull() + // missing filename + expect(getFilenameFromContentDisposition('attachment;')).toBeNull() + // empty header + expect(getFilenameFromContentDisposition(null)).toBeNull() + }) +}) diff --git a/src-ui/src/app/utils/http.ts b/src-ui/src/app/utils/http.ts new file mode 100644 index 000000000..96af8d702 --- /dev/null +++ b/src-ui/src/app/utils/http.ts @@ -0,0 +1,23 @@ +export function getFilenameFromContentDisposition(header: string): string { + if (!header) { + return null + } + + // Try filename* (RFC 5987) + const filenameStar = header.match(/filename\*=(?:UTF-\d['']*)?([^;]+)/i) + if (filenameStar?.[1]) { + try { + return decodeURIComponent(filenameStar[1]) + } catch (e) { + // Ignore decoding errors and fall through + } + } + + // Fallback to filename= + const filenameMatch = header.match(/filename="?([^"]+)"?/) + if (filenameMatch?.[1]) { + return filenameMatch[1] + } + + return null +} From a57a3dbb300f54e40315790f7725b5a22ab5a12f Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 19 Apr 2025 15:11:29 -0700 Subject: [PATCH 6/9] Fix: do not try deleting original that was moved to trash dir (#9684) --- src/documents/signals/handlers.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index 16b3a01ea..673ecba52 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -349,11 +349,15 @@ def cleanup_document_deletion(sender, instance, **kwargs): ) return - for filename in ( - instance.source_path, + files = ( instance.archive_path, instance.thumbnail_path, - ): + ) + if not settings.EMPTY_TRASH_DIR: + # Only delete the original file if we are not moving it to trash dir + files += (instance.source_path,) + + for filename in files: if filename and os.path.isfile(filename): try: os.unlink(filename) From c3bd587cbf82b532b0b6a659b9284ebb00ee7baf Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 19 Apr 2025 15:12:55 -0700 Subject: [PATCH 7/9] Documentation: note api v8 bump --- docs/api.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/api.md b/docs/api.md index 9d43145b4..44c9a4bc4 100644 --- a/docs/api.md +++ b/docs/api.md @@ -413,3 +413,8 @@ Initial API version. list of strings. When creating or updating a custom field value of a document for a select type custom field, the value should be the `id` of the option whereas previously was the index of the option. + +#### Version 8 + +- The user field of document notes now returns a simplified user object + rather than just the user ID. From 7a1be6bff212f93f9de436784335b117007164bb Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 19 Apr 2025 15:13:53 -0700 Subject: [PATCH 8/9] Update translation strings --- src-ui/messages.xlf | 94 +++++++++++++------------- src/locale/en_US/LC_MESSAGES/django.po | 6 +- 2 files changed, 50 insertions(+), 50 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 09876cd98..5e0b4f4d3 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -2537,19 +2537,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3157,7 +3157,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3406,7 +3406,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -6820,56 +6820,56 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -6880,67 +6880,67 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6951,7 +6951,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6962,14 +6962,14 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -6980,77 +6980,77 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7061,60 +7061,60 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 diff --git a/src/locale/en_US/LC_MESSAGES/django.po b/src/locale/en_US/LC_MESSAGES/django.po index 732c0f4a5..fd4306930 100644 --- a/src/locale/en_US/LC_MESSAGES/django.po +++ b/src/locale/en_US/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" "PO-Revision-Date: 2022-02-17 04:17\n" "Last-Translator: \n" "Language-Team: English\n" @@ -1185,12 +1185,12 @@ msgstr "" msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "" From ba6976bdbbf4c4295b4e296556579a838857d863 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 19 Apr 2025 15:15:46 -0700 Subject: [PATCH 9/9] New Crowdin translations by GitHub Action (#9705) --- src-ui/src/locale/messages.af_ZA.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.ar_AR.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.be_BY.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.bg_BG.xlf | 102 ++++++++++++------------- src-ui/src/locale/messages.ca_ES.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.cs_CZ.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.da_DK.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.de_DE.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.el_GR.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.es_ES.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.et_EE.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.fi_FI.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.fr_FR.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.he_IL.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.hr_HR.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.hu_HU.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.id_ID.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.it_IT.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.ja_JP.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.ko_KR.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.lb_LU.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.lt_LT.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.lv_LV.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.ms_MY.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.nl_NL.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.no_NO.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.pl_PL.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.pt_BR.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.pt_PT.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.ro_RO.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.ru_RU.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.sk_SK.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.sl_SI.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.sr_CS.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.sv_SE.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.th_TH.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.tr_TR.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.uk_UA.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.vi_VN.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.zh_CN.xlf | 94 +++++++++++------------ src-ui/src/locale/messages.zh_TW.xlf | 94 +++++++++++------------ src/locale/af_ZA/LC_MESSAGES/django.po | 8 +- src/locale/ar_AR/LC_MESSAGES/django.po | 8 +- src/locale/be_BY/LC_MESSAGES/django.po | 8 +- src/locale/bg_BG/LC_MESSAGES/django.po | 12 +-- src/locale/ca_ES/LC_MESSAGES/django.po | 8 +- src/locale/cs_CZ/LC_MESSAGES/django.po | 8 +- src/locale/da_DK/LC_MESSAGES/django.po | 8 +- src/locale/de_DE/LC_MESSAGES/django.po | 8 +- src/locale/el_GR/LC_MESSAGES/django.po | 8 +- src/locale/es_ES/LC_MESSAGES/django.po | 8 +- src/locale/et_EE/LC_MESSAGES/django.po | 8 +- src/locale/fi_FI/LC_MESSAGES/django.po | 8 +- src/locale/fr_FR/LC_MESSAGES/django.po | 8 +- src/locale/he_IL/LC_MESSAGES/django.po | 8 +- src/locale/hr_HR/LC_MESSAGES/django.po | 8 +- src/locale/hu_HU/LC_MESSAGES/django.po | 8 +- src/locale/id_ID/LC_MESSAGES/django.po | 8 +- src/locale/it_IT/LC_MESSAGES/django.po | 8 +- src/locale/ja_JP/LC_MESSAGES/django.po | 8 +- src/locale/ko_KR/LC_MESSAGES/django.po | 8 +- src/locale/lb_LU/LC_MESSAGES/django.po | 8 +- src/locale/lt_LT/LC_MESSAGES/django.po | 8 +- src/locale/lv_LV/LC_MESSAGES/django.po | 8 +- src/locale/ms_MY/LC_MESSAGES/django.po | 8 +- src/locale/nl_NL/LC_MESSAGES/django.po | 8 +- src/locale/no_NO/LC_MESSAGES/django.po | 8 +- src/locale/pl_PL/LC_MESSAGES/django.po | 8 +- src/locale/pt_BR/LC_MESSAGES/django.po | 8 +- src/locale/pt_PT/LC_MESSAGES/django.po | 8 +- src/locale/ro_RO/LC_MESSAGES/django.po | 8 +- src/locale/ru_RU/LC_MESSAGES/django.po | 8 +- src/locale/sk_SK/LC_MESSAGES/django.po | 8 +- src/locale/sl_SI/LC_MESSAGES/django.po | 8 +- src/locale/sr_CS/LC_MESSAGES/django.po | 8 +- src/locale/sv_SE/LC_MESSAGES/django.po | 8 +- src/locale/th_TH/LC_MESSAGES/django.po | 8 +- src/locale/tr_TR/LC_MESSAGES/django.po | 8 +- src/locale/uk_UA/LC_MESSAGES/django.po | 8 +- src/locale/vi_VN/LC_MESSAGES/django.po | 8 +- src/locale/zh_CN/LC_MESSAGES/django.po | 8 +- src/locale/zh_TW/LC_MESSAGES/django.po | 8 +- 82 files changed, 2097 insertions(+), 2097 deletions(-) diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf index 35ef07396..b9c8e7a4c 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Fout by die laai van die inhoud: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Fout by ophaal van metadata @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Fout by ophaal van voorstelle. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Fout by bewaar van dokument @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Error deleting document @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index 0e2828bee..69763cf52 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 حدث خطأ في تحميل المحتوى @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 تم اكتشاف تغييرات في المستند @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 إصدار هذا المستند في جلسة المتصفح الخاصة بك يبدو أقدم من الإصدار الحالي. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 قد يؤدي حفظ المستند هنا إلى الكتابة فوق التغييرات الأخرى التي تم إجراؤها. لاستعادة الإصدار الموجود، تجاهل التغييرات أو أغلق المستند. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 موافق @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 المستند التالي @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 المستند السابق @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 حفظ المستند @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 خطأ في استرجاع البيانات الوصفية @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 خطأ في استرداد الاقتراحات. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 خطأ أثناء حفظ المستند @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 هل تريد حقاً نقل المستند "" إلى سلة المهملات؟ @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 خطأ أثناء حذف المستند @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 ستؤدي هذه العملية إلى إعادة إنشاء ملف الأرشيف لهذا المستند بشكل دائم. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 سيتم إعادة إنشاء ملف الأرشيف بالإعدادات الحالية. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 خطأ أثناء تنفيذ العملية @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 احتواء الصفحة @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 تأكيد التجزئة @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 هذه العملية ستؤدي إلى فصل المستند أو المستندات المحددة لمستندات جديدة. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 خطأ أثناء تنفيذ عملية التجزئة @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 هذه العملية ستؤدي إلى تدوير النسخة الأصلية من المستند الحالي بشكل دائم. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 خطأ أثناء تنفيذ عملية التدوير @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 تأكيد حذف الصفحات @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 ستؤدي هذه العملية إلى حذف الصفحات المحددة نهائيا من المستند الأصلي. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 خطأ أثناء تنفيذ عملية حذف الصفحات @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index 1603f5879..717dbfd7d 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 An error occurred loading content: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Error retrieving metadata @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Error retrieving suggestions. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Error saving document @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Error deleting document @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf index ea3b1e78e..e13928e64 100644 --- a/src-ui/src/locale/messages.bg_BG.xlf +++ b/src-ui/src/locale/messages.bg_BG.xlf @@ -2060,7 +2060,7 @@ src/app/components/admin/tasks/tasks.component.html 172,174 - Подредено в опашка + Добавено в опашка Result @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -4380,7 +4380,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 42 - Обхват на консумацията + Движение обработка See docs for .eml processing requirements @@ -5560,7 +5560,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 103 - Започната обработка + Стартирана обработка Document Added @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Възникна грешка при зареждане на съдържание: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Установени промени в документа @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 Версията на този документ в сесията на вашия браузър изглежда по-стара от съществуващата версия. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Записването на документа тук може да презапише други направени промени. За да възстановите съществуващата версия, отхвърлете промените или затворете документа. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ок @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Следващ документ @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Предишен документ @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Запазете документ @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Запази и затвори / следващ @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Грешка при извличане на метаданни @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Грешка при извличане на предложения. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Документ "" запазен успешно. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Грешка при запазване на документ "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Грешка при запазване на документа @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Наистина ли искате да преместите документа "" в кошчето? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Грешка при изтриване на документа @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 Тази операция ще пресъздаде архивен файл за този документ. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 Архивният файл ще бъде отново генериран с текущите настройки. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Операция за преработка на "", ще започне на заден план. Затворете и отворете или презаредете този документ след приключване на операцията, за да видите ново съдържание. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Грешка при изпълнение на операцията @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Грешка при изтегляне на документа @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Побиране на страницата @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Сплит потвърждение @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 Тази операция ще раздели избрания документ(и) на нови документи. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Сплит операция за "" ще започне на заден план. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Грешка при изпълнение на операцията за разделяне @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 Тази операция ще завърти за постоянно оригиналната версия на текущия документ. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Завъртане на "" ще започне във фонов режим. Затворете и отворете отново документа, след като операцията приключи, за да видите промените. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Грешка при изпълнение на операция за завъртане @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Потвърждение за изтриване на страници @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 Тази операция ще изтрие завинаги избраните страници от оригиналния документ. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Изтриване на страници за "" ще започне във фонов режим. Затворете и отворете отново или презаредете този документ, след като операцията приключи, за да видите промените. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Грешка при изпълнение на операцията за изтриване на страници @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 Възникна грешка при зареждането на tiff: @@ -8250,7 +8250,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 864 - Обединеният документ ще бъде поставен на опашка за потребление. + Обединеният документ ще бъде поставен в опашка за обработване. Custom fields updated. diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index dc2d82fcb..2f54227f2 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Error carregant contingut: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Canvis detectats al document @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 La versió d'aquest document a la sessió del vostre navegador sembla més antiga que la versió existent. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Desar el document aquí pot sobreescriure altres canvis fets. Per restaurar la versió existent, descarta els canvis o tanca el document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Següent document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Document Anterior @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Desar Document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Desa i tanca/següent @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Error recuperant metadada @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Error recuperant suggerències. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" deat satisfactòriament. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error desant document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Error guardant document @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Realment vols moure el document "" a la brossa? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Error esborrant document @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 Aquesta operació recrearà l'arxivat per aquest document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 Els arxius arxivats seran regenerats amb les opcions actuals. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocessament per "" començarà en segon pla. Tanca i reobre o recarrega el documentper a veure el nou contingut. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executant operació @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error descarregant document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Encaix Pàgina @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Confirma divisió @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 Aquesta operació dividirà els documents seleccionats en documents nous. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 L'operació per dividir "" començarà en segon pla. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executant operació de divisió @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 Aquesta operació girarà permanentment la versió original del document actual. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 La rotació de "" començarà en segon pla. Tanca i reobre el document per a veure els canvis. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executant operació de rotació @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Confirma esborrat @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 Aquesta operació suprimirà permanentment les pàgines seleccionades del document original. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Esborrat de pàgines de "" començarà en segon pla. Tanca i reobre o recarrega el document per a veure els canvis. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error en executar l'operació d'eliminació de pàgines @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 Error al carregar tiff: diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index 65c7b4dda..eb8026977 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Při načítání obsahu došlo k chybě: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Zjištěny změny dokumentu @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 Verze tohoto dokumentu v relaci prohlížeče se zdá být starší než stávající verze. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Uložení dokumentu zde může přepsat jiné provedené změny. Chcete-li obnovit stávající verzi, zrušte změny nebo dokument zavřete. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 OK @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Další dokument @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Předchozí dokument @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Uložit dokument @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Uložit a zavřít/další @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Chyba při načítání metadat @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Chyba při načítání návrhů. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Dokument „“ úspěšně uložen. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Chyba při ukládání dokumentu „ @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Chyba při ukládání dokumentu @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Opravdu chcete přesunout dokument „“ do koše? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Chyba při mazání dokumentu @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 Tato operace trvale obnoví archivní soubor pro tento dokument. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 Archivní soubor bude znovu vytvořen s aktuálním nastavením. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Operace opětovného zpracování souboru „“ bude spuštěna na pozadí. Pro zobrazení nového obsahu zavřete a znovu otevřete nebo znovu načtěte tento dokument po dokončení operace. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Chyba při provádění operace @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Chyba při stahování dokumentu @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Přizpůsobení stránky @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Potvrzení rozdělení @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 Tato operace rozdělí vybrané dokumenty na nové dokumenty. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Operace rozdělení souboru „“ bude spuštěna na pozadí. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Chyba při provádění operace rozdělení @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 Tato operace trvale otočí původní verzi aktuálního dokumentu. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Otočení souboru „“ bude spuštěno na pozadí. Pro zobrazení změn zavřete a znovu otevřete dokument po dokončení operace. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Chyba při provádění operace otočení @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Potvrzení odstranění stránek @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 Tato operace nenávratně smaže vybrané stránky z původního dokumentu. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Operace odstranění stránek souboru „“ bude spuštěna na pozadí. Pro zobrazení změn zavřete a znovu otevřete tento dokument po dokončení operace. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Chyba při vykonávání operace odstranění stránek @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 Došlo k chybě při načítání tiff: diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index 86f6cd3cb..4d79208d4 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 An error occurred loading content: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Error retrieving metadata @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Error retrieving suggestions. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Error saving document @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Error deleting document @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index 170320cac..7dae73632 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Fehler beim Laden des Inhalts: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Dokumentänderungen erkannt @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 Die Dokumentenversion in der Browsersession erscheint älter als die existierende Version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Beim Speichern des Dokuments könnten andere Änderungen überschrieben werden. Um die existierende Version wiederherzustellen, verwerfen Sie Ihre Änderungen oder schließen Sie das Dokument. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 OK @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Nächstes Dokument @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Vorheriges Dokument @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Dokument speichern @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Speichern und schließen / weiter @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Fehler beim Abrufen der Metadaten @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Fehler beim Abrufen der Vorschläge. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Dokument „“ erfolgreich gespeichert. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Fehler beim Speichern des Dokuments „ @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Fehler beim Speichern des Dokuments @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Möchten Sie das Dokument „“ wirklich in den Papierkorb verschieben? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Fehler beim Löschen des Dokuments @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 Dieser Vorgang wird die Archivdatei dieses Dokuments unwiderruflich neu erstellen. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 Die Archivdatei wird mit den aktuellen Einstellungen neu generiert. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Die erneute Verarbeitung von „“ wird im Hintergrund gestartet. Schließen und öffnen Sie dieses Dokument nach Abschluss des Vorgangs erneut oder laden Sie es neu, um neue Inhalte anzuzeigen. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Fehler beim Ausführen der Aktion @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Fehler beim Herunterladen des Dokuments @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Seite einpassen @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Teilung bestätigen @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 Dieser Vorgang wird ausgewählte Dokumente in neue Dokumente aufteilen. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Der Teilungsvorgang für „“ wird im Hintergrund gestartet. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Fehler beim Ausführen des Teilungsvorgangs @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 Dieser Vorgang wird die Originalversion des aktuellen Dokuments unwiderruflich rotieren. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Der Rotationsvorgang für „“ wird im Hintergrund gestartet. Schließen und öffnen Sie das Dokument nach Abschluss des Vorgangs erneut, um die Änderungen zu sehen. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Fehler beim Ausführen des Rotationsvorgangs @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Seiten löschen bestätigen @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 Dieser Vorgang wird die ausgewählten Seiten unwiderruflich aus dem Originaldokument löschen. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Der Vorgang „Seiten löschen“ für „“ wird im Hintergrund ausgeführt. Schließen Sie das Dokument und öffnen Sie es erneut oder laden Sie es neu, nachdem der Vorgang abgeschlossen ist, um die Änderungen zu sehen. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Fehler beim Ausführen des Vorgangs „Seiten löschen“ @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 Fehler beim Laden des TIFF: diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf index fdd37558f..a32e7e657 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Παρουσιάστηκε σφάλμα κατά τη φόρτωση του περιεχομένου: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Οκ @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Σφάλμα ανάκτησης μεταδεδομένων @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Σφάλμα στην ανάκτηση προτάσεων. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Σφάλμα αποθήκευσης του εγγράφου @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Σφάλμα διαγραφής εγγράφου @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Σφάλμα εκτέλεσης λειτουργίας @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index e3eee2db9..c2593ad00 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Se ha producido un error al cargar el contenido: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Cambios de documento detectados @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 La versión de este documento en la sesión de su navegador aparece más antigua que la versión existente. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Guardar el documento aquí puede sobrescribir otros cambios que se han hecho. Para restaurar la versión existente, descartar los cambios o cerrar el documento. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Aceptar @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Documento siguiente @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Documento anterior @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Guardar documento @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Guardar y cerrar / siguiente @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Error al recuperar los metadatos @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Error al recuperar las sugerencias. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Documento "" guardado correctamente. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error al guardar el documento "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Error al guardar el documento @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 ¿Estás seguro de querer borrar el documento ""? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Error al eliminar documento @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 Esta operación recreará permanentemente el archivo de archivo para este documento. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 El archivo se regenerará con la configuración actual. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 La operación de reprocesamiento para "" comenzará en segundo plano. Cerrar y volver a abrir o volver a cargar este documento una vez finalizada la operación para ver el nuevo contenido. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error al ejecutar la operación @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error al descargar el documento @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Ajuste de página @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Confirmar división @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 Esta operación dividirá los documento(s) seleccionados en nuevos documentos. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 La operación de división para "" comenzará en segundo plano. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error al ejecutar la operación de división @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 Esta operación girará permanentemente la versión original del documento actual. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 La rotación de "" comenzará en segundo plano. Cerrar y volver a abrir el documento una vez finalizada la operación para ver los cambios. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error al ejecutar la operación de rotación @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Confirmar eliminación de páginas @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 Esta operación eliminará permanentemente las páginas seleccionadas del documento original. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 La operación de eliminar páginas para "" comenzará en segundo plano. Cerrar y volver a abrir o volver a cargar este documento una vez finalizada la operación para ver los cambios. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error al ejecutar la operación de eliminar páginas @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 Se ha producido un error al cargar el tif: diff --git a/src-ui/src/locale/messages.et_EE.xlf b/src-ui/src/locale/messages.et_EE.xlf index d2b27991c..413d9a03d 100644 --- a/src-ui/src/locale/messages.et_EE.xlf +++ b/src-ui/src/locale/messages.et_EE.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 An error occurred loading content: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Error retrieving metadata @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Error retrieving suggestions. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Error saving document @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Error deleting document @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index ad7784b08..80afc6ca4 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Sisällön lataamisessa tapahtui virhe: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Asiakirjan muutoksia havaittu @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 Tämän asiakirjan versio selainistunnossasi vaikuttaa olevan vanhempi kuin olemassa oleva versio. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 OK @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Seuraava asiakirja @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Edellinen asiakirja @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Tallenna asiakirja @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Virhe haettaessa metatietoja @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Virhe ehdotuksia noutaessa. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Virhe tallennettaessa asiakirjaa @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Virhe asiakirjaa poistaessa @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Virhe toimintoa suoritettaessa @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Sivun sovitus @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Vahvista sivujen poisto @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index ce30db782..bd93ae82b 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Une erreur s'est produite lors du chargement du contenu : @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Modifications du document détectées @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 La version de ce document dans la session de votre navigateur semble plus ancienne que la version existante. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Sauvegarder le document ici peut écraser les autres modifications qui ont été faites. Pour restaurer la version existante, annulez vos modifications ou fermez le document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 OK @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Document suivant @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Document précédent @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Enregistrer le document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Sauvegarder et fermer / suivant @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Erreur lors de la récupération des métadonnées @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Erreur lors de la récupération des suggestions. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document «  » enregistré avec succès. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Erreur lors de la sauvegarde du document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Erreur lors de la sauvegarde du document @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Voulez-vous vraiment déplacer le document «  » vers la corbeille ? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Erreur lors de la suppression du document @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 Cette action recréera définitivement le fichier d'archive pour ce document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 Le fichier d'archive va être régénéré avec les paramètres actuels. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 L'opération de retraitement pour "" commencera en arrière-plan. Fermez et rouvrez ou rechargez ce document une fois l'opération terminée pour voir le nouveau contenu. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Erreur lors de l'exécution de l'opération @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Erreur lors du téléchargement du document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Ajustement de la page @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Confirmation de la séparation @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 Cette opération séparera définitivement le(s) document(s) sélectionné(s) dans de nouveaux documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 L'opération de fractionnement pour "" commencera en arrière-plan. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Erreur lors de l’exécution de l’opération de séparation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 Cette action pivotera définitivement la version originale du document courant. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 La rotation de "" va commencer en arrière-plan. Fermez et rouvrez le document une fois l'opération terminée pour voir les modifications. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Erreur lors de l'exécution de l'opération de rotation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Confirmer la suppression des pages @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 Cette action supprimera définitivement les pages sélectionnées du document original. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 L'opération de suppression des pages pour "" commencera en arrière-plan. Fermez et rouvrez ou rechargez ce document une fois l'opération terminée pour voir les changements. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Erreur lors de l'exécution de l'opération de suppression des pages @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 Une erreur s’est produite lors du chargement du tiff : diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index 4e72eacd7..b59f7ebcb 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 ארעה שגיאה בטעינת התוכן: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 שגיאה באחזור נתונים @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 שגיאה באחזור הצעות. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 שגיאה בשמירת מסמך @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 שגיאה במחיקת מסמך @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 שגיאת הרצה @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 התאם תצוגה לרוחב הדף @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index c5f8e3271..793bf5c0e 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 An error occurred loading content: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Error retrieving metadata @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Error retrieving suggestions. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Error saving document @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Error deleting document @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index 1d389c43a..e1689d993 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Hiba történt a tartalom betöltése során: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Hiba a metaadatok lekérdezésében @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Hiba a javaslatok lekérdezésében. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Dokumentum mentési hiba @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Hiba a dokumentum törlésében @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Hiba a művelet végrehajtásában @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Oldal illesztése @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf index d66fc10bf..fd563c643 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Terjadi kesalahan saat memuat konten: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Kesalahan saat mendapatkan metadata @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Error retrieving suggestions. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Kesalahan saat menyimpan dokumen @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Kesalahan saat menghapus dokumen @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index 155fe41d3..a5d5b2cda 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Si è verificato un errore durante il caricamento del contenuto: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Rilevate modifiche al documento @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 La versione di questo documento nella sessione del browser appare più vecchia della versione esistente. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Salvare il documento qui potrebbe sovrascrivere altre modifiche apportate. Per ripristinare la versione esistente, annulla le modifiche o chiudi il documento. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Documento successivo @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Documento precedente @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Salva documento @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Salva e chiudi / successivo @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Errore nel recupero dei metadati @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Errore durante il recupero dei suggerimenti. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Documento "" salvato con successo. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Errore durante il savataggio del documento "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Errore nel salvare il documento @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Vuoi davvero spostare il documento "" nel cestino? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Errore durante l'eliminazione del documento @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 Questa operazione ricreerà in modo permanente il file di archivio per questo documento. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 Il file di archivio verrà rigenerato con le impostazioni attuali. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 L'attività di rielaborazione per "" inizierà in background. Chiudi e riapri o ricarica questo documento dopo che l'operazione è stata completata per vedere i nuovi contenuti. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Errore nell'esecuzione dell'operazione @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Errore durante il download del documento @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Adatta Alla Pagina @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Conferma divisione @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 Questa operazione dividerà i documenti selezionati in nuovi documenti. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Errore durante l'operazione di divisione @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 Questa operazione ruoterà in modo permanente la versione originale del documento attuale. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Errore nell'esecuzione dell'operazione di rotazione @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Conferma eliminazione pagine @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 Questa operazione eliminerà definitivamente le pagine selezionate dal documento originale. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Errore durante l'eliminazione delle pagine @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf index 8ad39c891..ee7269df0 100644 --- a/src-ui/src/locale/messages.ja_JP.xlf +++ b/src-ui/src/locale/messages.ja_JP.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 コンテンツ: の読み込み中にエラーが発生しました @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 ドキュメントの変更を検出しました @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 ブラウザセッション内のこのドキュメントのバージョンは、実際のバージョンより古いようです。 @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 ここでドキュメントを保存すると、その他の変更が上書きされる可能性があります。実際のバージョンに更新するには、変更を破棄するか、ドキュメントを閉じてください。 @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 OK @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 次のドキュメント @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 前のドキュメント @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 ドキュメントを保存 @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 保存して閉じる / 次へ @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 メタデータの取得に失敗しました @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 提案の取得に失敗しました @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 ドキュメント「」が正常に保存されました。 @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 ドキュメント「」の保存中にエラーが発生しました @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 ドキュメントの保存に失敗しました @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 ドキュメント "" をごみ箱に移動しますか? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 ドキュメントの削除に失敗しました @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 この操作により、このドキュメントのアーカイブファイルが永続的に再作成されます。 @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 アーカイブファイルは現在の設定で再生成されます。 @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 」の再処理操作がバックグラウンドで開始されます。操作が完了したら、このドキュメントを閉じて再度開くか、再読み込みして新しいコンテンツを表示してください。 @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 操作の実行に失敗しました @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 ドキュメントのダウンロードに失敗しました @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 ページに合わせる @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 本当に分割しますか? @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 この操作により、選択したドキュメントが新しいドキュメントに分割されます @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 」の分割操作がバックグラウンドで開始されます。 @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 分割処理に失敗しました @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 この操作により、現在のドキュメントの元のバージョンが恒久的に回転します。 @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 」の回転がバックグラウンドで開始されます。操作が完了したら、ドキュメントを閉じて再度開き、変更内容を確認してください。 @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 回転処理に失敗しました @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 本当にページを削除しますか? @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 この操作は選択したページを元のドキュメントから完全に削除します。 @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 」のページ削除操作がバックグラウンドで開始されます。操作が完了したら、このドキュメントを閉じて再度開くか、再読み込みして変更を確認してください。 @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 ページ削除の実行中にエラーが発生しました @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 TIFFの読み込み中にエラーが発生しました: diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf index f1fbe5f4e..0b7b1c656 100644 --- a/src-ui/src/locale/messages.ko_KR.xlf +++ b/src-ui/src/locale/messages.ko_KR.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 콘텐츠를 로드하는 동안 오류가 발생했습니다: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 문서 변경 감지 @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 브라우저 세션에서 이 문서의 버전이 기존 버전보다 이전 버전으로 표시됩니다. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 여기에 문서를 저장하면 다른 변경 내용을 덮어쓸 수 있습니다. 기존 버전을 복원하려면 변경 내용을 삭제하거나 문서를 닫으세요. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 다음 문서 @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 이전 문서 @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 문서 저장 @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 저장 및 닫기 / 다음 @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 메타데이터를 가져오는데 실패하였습니다. @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 추천을 가져오는데 실패하였습니다. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 문서를 저장하는데 오류가 발생하였습니다. @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 "" 문서를 휴지통으로 정말 옮기시겠습니까? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 문서 삭제 오류 @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 이 작업을 수행하면 이 문서의 아카이브 파일이 영구적으로 다시 생성됩니다. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 아카이브 파일은 현재 설정으로 다시 생성됩니다. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 작업 수행중 오류가 발생하였습니다. @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 페이지 맞춤 @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 분할 확인 @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 이 작업을 수행하면 선택한 문서가 새 문서로 분할됩니다. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 분할 작업 실행 중 오류 발생 @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 이 작업을 수행하면 현재 문서의 원본 버전이 영구적으로 회전합니다. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 회전 작업 실행 중 오류 발생 @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 페이지 삭제 확인 @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 이 작업을 수행하면 원본 문서에서 선택한 페이지가 영구적으로 삭제됩니다. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 페이지 삭제 작업 실행 중 오류 발생 @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 tiff를 로드하는 동안 오류가 발생했습니다: diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index 0335a20e2..7921eb117 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 An error occurred loading content: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Error retrieving metadata @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Error retrieving suggestions. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Error saving document @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Error deleting document @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.lt_LT.xlf b/src-ui/src/locale/messages.lt_LT.xlf index de4994b86..232588c9b 100644 --- a/src-ui/src/locale/messages.lt_LT.xlf +++ b/src-ui/src/locale/messages.lt_LT.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 An error occurred loading content: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Error retrieving metadata @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Error retrieving suggestions. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Error saving document @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Error deleting document @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf index 46e4b64f4..fa621c738 100644 --- a/src-ui/src/locale/messages.lv_LV.xlf +++ b/src-ui/src/locale/messages.lv_LV.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 An error occurred loading content: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Error retrieving metadata @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Error retrieving suggestions. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Error saving document @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Error deleting document @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.ms_MY.xlf b/src-ui/src/locale/messages.ms_MY.xlf index 1a40b0aa8..7d994bfa7 100644 --- a/src-ui/src/locale/messages.ms_MY.xlf +++ b/src-ui/src/locale/messages.ms_MY.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 An error occurred loading content: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Error retrieving metadata @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Error retrieving suggestions. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Error saving document @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Error deleting document @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index 332341ef6..a1066dd9e 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Er is een fout opgetreden bij het laden van de inhoud: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Documentwijzigingen gedetecteerd @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 De versie van dit document in je browsersessie lijkt ouder dan de bestaande versie. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Als je het document hier opslaat, worden mogelijk andere wijzigingen overschreven. Om de bestaande versie te herstellen, kun je de wijzigingen negeren of het document sluiten. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Volgend document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Vorig document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Document opslaan @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Opslaan en sluiten/volgende @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Fout bij ophalen metadata @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Fout bij ophalen suggesties. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" succesvol opgeslagen. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Fout bij opslaan document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Fout bij opslaan document @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Weet je zeker dat je het document "" naar de prullenbak wilt verplaatsen? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Fout bij verwijderen document @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 Met deze bewerking wordt het gearchiveerde bestand voor dit document permanent opnieuw gemaakt. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 Het gearchiveerde bestand wordt opnieuw gegenereerd met de huidige instellingen. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Het opnieuw verwerken van "" zal op de achtergrond beginnen. Sluit en open het document opnieuw nadat de bewerking is voltooid om de wijzigingen te zien. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Fout bij uitvoeren bewerking @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Fout bij downloaden document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Pagina passend maken @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Splitsen bevestigen @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 Deze bewerking splitst de geselecteerde document(en) op in nieuwe documenten. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Het splitsen van "" zal op de achtergrond beginnen. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Fout bij uitvoeren splits bewerking @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 Met deze bewerking wordt de originele versie van het huidige document permanent geroteerd. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Het roteren van "" zal op de achtergrond beginnen. Sluit en open het document opnieuw nadat de bewerking is voltooid om de wijzigingen te zien. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Fout bij uitvoeren van rotatie bewerking @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Bevestig pagina's verwijderen @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 Met deze bewerking worden de geselecteerde pagina's permanent uit het originele document verwijderd. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Pagina's verwijderen van "" zal op de achtergrond beginnen. Sluit en open het document opnieuw nadat de bewerking is voltooid om de wijzigingen te zien. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Fout bij het verwijderen van pagina's @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 Fout bij het laden van tiff: diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index e86327cfc..b1e28745e 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Det oppstod en feil ved lasting av innhold: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Feil ved henting av metadata @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Feil ved henting av forslag. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Feil ved lagring av dokument @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Feil ved sletting av dokumentet @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index 84d434967..5b76113a8 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Wystąpił błąd podczas ładowania zawartości: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Wykryto zmiany w dokumencie @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 Wersja tego dokumentu w sesji przeglądarki wydaje się starsza niż istniejąca. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Zapisanie dokumentu w tym miejscu może spowodować nadpisanie innych wprowadzonych zmian. Aby przywrócić istniejącą wersję, należy odrzucić wprowadzone zmiany lub zamknąć dokument. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Następny dokument @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Poprzedni dokument @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Zapisz dokument @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Zapisz i zamknij / następny @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Błąd podczas pobierania metadanych @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Błąd podczas pobierania sugestii. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Błąd podczas zapisywania dokumentu @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Czy naprawdę chcesz przenieść dokument "" do kosza? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Błąd usuwania dokumentu @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 Ta operacja spowoduje trwałe odtworzenie pliku archiwum dla tego dokumentu. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 Plik archiwum zostanie ponownie wygenerowany z bieżącymi ustawieniami. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Błąd podczas wykonywania operacji @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Dopasuj do strony @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Potwierdzenie podziału @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 Ta operacja spowoduje podzielenie wybranych dokumentów na nowe. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Błąd podczas wykonywania operacji podziału @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 Ta operacja spowoduje trwały obrót oryginalnej wersji bieżącego dokumentu. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Błąd podczas wykonywania operacji obracania @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Potwierdzenie usunięcia stron @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 Ta operacja spowoduje trwałe usunięcie wybranych stron z oryginalnego dokumentu. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Błąd podczas wykonywania operacji usuwania stron @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index 3609b5ac2..38219e9fd 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Ocorreu um erro ao carregar o conteúdo: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Alterações de documento detectadas @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 A versão deste documento na sessão do seu navegador parece mais antiga que a versão existente. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Salvar o documento aqui pode substituir outras alterações feitas. Para restaurar a versão existente, descarte suas alterações ou feche o documento. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Próximo documento @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Documento anterior @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Salvar documento @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Salvar e fechar / próximo @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Erro ao recuperar metadados @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Erro ao recuperar sugestões. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Erro ao salvar documento @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Você realmente deseja mover o documento ""? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Erro ao apagar documento @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 Essa operação irá recriar permanentemente o arquivo para este documento. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 Os arquivos serão re-gerados com as configurações atuais. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Erro ao executar a operação de divisão @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Ajustar à Página @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Confirmar Divisão @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 Esta operação dividirá o(s) documento(s) selecionado(s) em novos documentos. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Erro ao executar a operação de divisão @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 Esta operação irá rotacionar permanentemente a versão original do documento atual. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Erro ao executar operação de rotação @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Deletar páginas confirmadas @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 Essa operação irá excluir permanentemente o(s) documento(s) selecionado(s). @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Erro ao executar operação de exclusão de páginas @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 Ocorreu um erro ao carregar tiff: diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index ccae1c729..d8cccad84 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Ocurreu um erro ao carregar o conteúdo: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Erro ao obter os metadados @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Erro ao obter sugestões. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Erro ao gravar documento @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Error deleting document @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index 525a74fa3..49b9501d4 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 An error occurred loading content: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Error retrieving metadata @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Error retrieving suggestions. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Error saving document @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Eroare la ștergerea documentului @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index 462720ae6..ac34922ac 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Произошла ошибка при загрузке контента: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Обнаружены изменения документа @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 Версия этого документа в вашем браузере появляется старше существующей версии. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Сохранение документа здесь может привести к перезаписи внесенных изменений. Чтобы восстановить существующую версию, отмените изменения или закройте документ. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Хорошо @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Ошибка при получении метаданных @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Ошибка при получении предложений. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Ошибка при сохранении документа @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Ошибка удаления документа @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Ошибка при выполнении операции @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Вместить страницу @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf index 11e2f3554..3ac8812e0 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Vyskytla sa chyba počas nahrávania obsahu: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Chyba pri získavaní metadát @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Chyba pri získavaní odporúčaní. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Chyba pri ukladaní dokumentu @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Error deleting document @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index a076c65b5..1a8a7471a 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Napaka pri nalaganju vsebine: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Zaznane spremembe v dokumentu @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 Različica dokumenta v vašem brskalniku je starejša od aktualne različice. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Shranjevanje dokumenta tukaj lahko prepiše druge nastale spremembe. Za obnovitev obstoječe različice, razveljavite spremembe ali zaprite dokument. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 V redu @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Naslednji dokument @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Prejšnji dokument @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Shrani dokument @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Napaka pri pridobivanju metapodatkov @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Napaka pri pridobivanju priporočil. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Napaka pri shranjevanju dokumenta @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Ali res želite dokument "" premakniti v smetnjak? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Napaka pri brisanju dokumenta @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 To dejanje bo dokončno poustvarilo arhivsko datoteko za izbran dokument. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 Arhivska datoteka bo poustvarjena s trenutnimi nastavitvami. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Napaka pri izvajanju operacije @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Prileganje strani @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Potrdi razdelitev @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 To dejanje bo izbrane dokumente razdelilo v nove dokumente. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Napaka pri izvajanju razdelitve @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 To dejanje bo dokončno zavrtelo izvirno različico trenutnega dokumenta. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Napaka pri izvajanju vrtenja @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Potrdi izbris strani @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 To dejanje bo dokončno izbrisalo izbrane strani iz izvirnega dokumenta. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Napaka pri izvajanju brisanja strani @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index 877a5dab0..92144727d 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Greške se pojavila prilikom učitavanja sadržaja: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Otkrivene promene dokumenta @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 Verzija ovog dokumenta u vašoj sesiji veb pretraživača deluje starije od postojeće verzije. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Čuvanje dokumenta ovde može ukloniti druge promene koje su napravljene. Da biste povratili postojeću verziju, odbacite svoje promene ili zatvorite dokument. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 U redu @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Sledeći dokument @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Prethodni dokument @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Sačuvaj dokument @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Sačuvaj i zatvori / sledeće @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Greška pri preuzimanju metapodataka @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Greška pri preuzimanju predloga. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Dokument "" je sačuvan uspešno. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Greška prilikom čuvanja dokumenta "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Greška prilikom čuvanja dokumenta @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Da li zaista želite da premestite ovaj dokument "" u otpad? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Greška prilikom brisanja dokumenta @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 Ova akcija će trajno ponovo kreirati arhivski fajl za ovaj dokument. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 Arhivski fajl će biti ponovo generisan sa trenutnim podešavanjima. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Operacija ponovne obrade za "" će početi u pozadini. Zatvorite i ponovo otvorite ili ponovo učitajte dokument nakon što operacija bude završena da biste videli novi sadržaj. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Greška prilikom izvršavanja operacije @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Greška prilikom preuzimanja dokumenta @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Prilagodi stranicu @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Potvrdi deljenje @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 Ova akcija će podeliti odabrani dokument na nova dokumenta. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Operacija podele za "" će započeti u pozadini. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Greška prilikom izvršavanja akcije deljenja @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 Ova akcija će trajno rotirati originalnu verziju trenutnog dokumenta. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotacija za "" će započeti u pozadini. Zatvorite i ponovo otvorite ili ponovo učitajte ovaj dokument nakon što operacija bude završena da biste videli promene. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Greška prilikom izvršavanja akcije rotacije @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Potvrda brisanja stranica @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 Ova akcija će trajno obrisati odabrane stranice iz originalnog dokumenta. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Operacija brisanja stranica za "" će započeti u pozadini. Zatvorite i ponovo otvorite ili ponovo učitajte ovaj dokument nakon što operacija bude završena da biste videli promene. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Greška prilikom izvršavanja operacije brisanja stranica @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 Došlo je do greške prilikom učitavanja TIFF-a: diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index 36f0f42b0..02ed14c1a 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Ett fel uppstod när innehållet laddades: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 OK @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Spara dokument @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Fel vid hämtning av metadata @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Fel vid hämtning av förslag. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Kunde inte spara dokumentet @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Error deleting document @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf index 241a77535..63bb7acc9 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 An error occurred loading content: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Error retrieving metadata @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Error retrieving suggestions. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Error saving document @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 เกิดข้อผิดพลาดในการลบเอกสาร @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index eeb79b6b3..8e38b0c8f 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7512,7 +7512,7 @@ tüm krite An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 An error occurred loading content: @@ -7520,7 +7520,7 @@ tüm krite Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7528,7 +7528,7 @@ tüm krite The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7536,7 +7536,7 @@ tüm krite Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7544,7 +7544,7 @@ tüm krite Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7552,7 +7552,7 @@ tüm krite Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7560,7 +7560,7 @@ tüm krite Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7568,7 +7568,7 @@ tüm krite Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7580,7 +7580,7 @@ tüm krite Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7588,7 +7588,7 @@ tüm krite Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7596,7 +7596,7 @@ tüm krite Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Metaveri alınırken hata oluştu @@ -7604,7 +7604,7 @@ tüm krite Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Önerileri getirirken hata oluştu. @@ -7612,11 +7612,11 @@ tüm krite Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7624,7 +7624,7 @@ tüm krite Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7632,7 +7632,7 @@ tüm krite Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Error saving document @@ -7640,7 +7640,7 @@ tüm krite Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7648,7 +7648,7 @@ tüm krite Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7660,7 +7660,7 @@ tüm krite Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7672,7 +7672,7 @@ tüm krite Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Error deleting document @@ -7680,7 +7680,7 @@ tüm krite Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7692,7 +7692,7 @@ tüm krite This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7700,7 +7700,7 @@ tüm krite The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7708,7 +7708,7 @@ tüm krite Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7716,7 +7716,7 @@ tüm krite Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Error executing operation @@ -7724,7 +7724,7 @@ tüm krite Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7732,7 +7732,7 @@ tüm krite Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7740,7 +7740,7 @@ tüm krite Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7748,7 +7748,7 @@ tüm krite This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7756,7 +7756,7 @@ tüm krite Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7764,7 +7764,7 @@ tüm krite Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7772,7 +7772,7 @@ tüm krite Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7784,7 +7784,7 @@ tüm krite This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7792,7 +7792,7 @@ tüm krite Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7800,7 +7800,7 @@ tüm krite Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7808,7 +7808,7 @@ tüm krite Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7816,7 +7816,7 @@ tüm krite This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7824,7 +7824,7 @@ tüm krite Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7832,7 +7832,7 @@ tüm krite Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7840,11 +7840,11 @@ tüm krite An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf index 5430ad758..74a79476f 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 Під час завантаження вмісту сталася помилка: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Зміни документу виявлено @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 Версія цього документа виявилась старішою за чинну версію. @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Збереження документа може перезаписати інші внесені зміни. Щоб відновити наявну версію, скасуйте зміни або закрийте документ. @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Гаразд @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Наступний документ @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Попередній документ @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Зберегти документ @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Помилка отримання метаданих @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Помилка при отриманні пропозицій. @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Помилка при збереженні документа @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Ви дійсно хочете перенести документ "" до смітника? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Помилка видалення документа @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 Ця операція остаточно відновить архівний файл цього документа. @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 Файл архіву буде повторно створений з поточними налаштуваннями. @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Помилка виконання операції @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Вмістити сторінку @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Підтвердження розділу @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 Ця операція розділить обраний(і) документ(и) на нові документи. @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Помилка виконання операції розділення @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 Ця операція остаточно поверне оригінальну версію поточного документа. @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Помилка виконання операції обертання @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Підтвердження видалення сторінок @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 Ця операція остаточно видалить вибрані сторінки з оригінального документа. @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Помилка виконання операції видалення сторінок @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf index c0e1cf741..fb15a7921 100644 --- a/src-ui/src/locale/messages.vi_VN.xlf +++ b/src-ui/src/locale/messages.vi_VN.xlf @@ -2747,19 +2747,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3428,7 +3428,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3696,7 +3696,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7512,7 +7512,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 An error occurred loading content: @@ -7520,7 +7520,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 Document changes detected @@ -7528,7 +7528,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 The version of this document in your browser session appears older than the existing version. @@ -7536,7 +7536,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7544,7 +7544,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7552,7 +7552,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 Next document @@ -7560,7 +7560,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 Previous document @@ -7568,7 +7568,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7580,7 +7580,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 Save document @@ -7588,7 +7588,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 Save and close / next @@ -7596,7 +7596,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 Error retrieving metadata @@ -7604,7 +7604,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 Error retrieving suggestions. @@ -7612,11 +7612,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 Document "" saved successfully. @@ -7624,7 +7624,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 Error saving document "" @@ -7632,7 +7632,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 Error saving document @@ -7640,7 +7640,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 Do you really want to move the document "" to the trash? @@ -7648,7 +7648,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7660,7 +7660,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7672,7 +7672,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 Lỗi khi xóa tài liệu. @@ -7680,7 +7680,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7692,7 +7692,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 This operation will permanently recreate the archive file for this document. @@ -7700,7 +7700,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 The archive file will be re-generated with the current settings. @@ -7708,7 +7708,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7716,7 +7716,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 Lỗi thực hiện thao tác @@ -7724,7 +7724,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 Error downloading document @@ -7732,7 +7732,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 Page Fit @@ -7740,7 +7740,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 Split confirm @@ -7748,7 +7748,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 This operation will split the selected document(s) into new documents. @@ -7756,7 +7756,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 Split operation for "" will begin in the background. @@ -7764,7 +7764,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 Error executing split operation @@ -7772,7 +7772,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7784,7 +7784,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 This operation will permanently rotate the original version of the current document. @@ -7792,7 +7792,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7800,7 +7800,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 Error executing rotate operation @@ -7808,7 +7808,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 Delete pages confirm @@ -7816,7 +7816,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 This operation will permanently delete the selected pages from the original document. @@ -7824,7 +7824,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7832,7 +7832,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 Error executing delete pages operation @@ -7840,11 +7840,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 An error occurred loading tiff: diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index 0683b542a..1792588b8 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 加载内容时发生错误: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 检测到文档变更 @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 此文档在您的浏览器会话中的版本似乎比现有版本更早。 @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 在此时保存文档可能会覆盖其他已经做出的更改。要恢复至现有的版本,放弃您的更改或关闭文档。 @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 Ok @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 下一个文档 @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 上一个文档 @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 保存文档 @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 保存并关闭 / 下一个 @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 获取元数据时发生错误 @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 获取建议时发生错误。 @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 文档 "" 保存成功。 @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 保存文档 时发生错误 @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 保存文档时发生错误 @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 您真的要将文档 "" 移动到回收站吗? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 删除文档时发生错误。 @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 此操作将永久重新创建此文档的归档文件。 @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 归档文件将使用当前设置重新生成。 @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 "" 的重新处理操作将在后台开始。 在操作完成后关闭并重新打开或重新加载此文档以查看新内容。 @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 执行操作时发生错误 @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 下载文档时出错 @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 适应页面 @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 "" 的拆分操作将在后台开始。 @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 "" 的旋转将在后台开始。在操作完成后关闭并重新打开文档以看到更改。 @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 执行旋转操作时发生错误 @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 删除页面操作 ""将在后台开始。 在操作完成后关闭并重新打开或重新加载此文档以查看更改。 @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 执行删除页面操作时发生错误 @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 加载内容时发生错误: diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index f5a2eb000..8a0e3639c 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 965 + 966 src/app/components/document-detail/document-detail.component.ts - 1327 + 1326 src/app/components/document-detail/document-detail.component.ts - 1366 + 1365 src/app/components/document-detail/document-detail.component.ts - 1407 + 1406 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 918 + 919 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1384 + 1383 src/app/guards/dirty-saved-view.guard.ts @@ -7510,7 +7510,7 @@ An error occurred loading content: src/app/components/document-detail/document-detail.component.ts - 412,414 + 413,415 讀取內容時發生錯誤: @@ -7518,7 +7518,7 @@ Document changes detected src/app/components/document-detail/document-detail.component.ts - 435 + 436 偵測到文件變更 @@ -7526,7 +7526,7 @@ The version of this document in your browser session appears older than the existing version. src/app/components/document-detail/document-detail.component.ts - 436 + 437 瀏覽器目前顯示的文件版本已過時。 @@ -7534,7 +7534,7 @@ Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. src/app/components/document-detail/document-detail.component.ts - 437 + 438 在此儲存文件可能會取代其他的變更。若要還原至現有版本,請放棄變更或關閉文件。 @@ -7542,7 +7542,7 @@ Ok src/app/components/document-detail/document-detail.component.ts - 439 + 440 確定 @@ -7550,7 +7550,7 @@ Next document src/app/components/document-detail/document-detail.component.ts - 546 + 547 下一個文件 @@ -7558,7 +7558,7 @@ Previous document src/app/components/document-detail/document-detail.component.ts - 556 + 557 上一個文件 @@ -7566,7 +7566,7 @@ Close document src/app/components/document-detail/document-detail.component.ts - 564 + 565 src/app/services/open-documents.service.ts @@ -7578,7 +7578,7 @@ Save document src/app/components/document-detail/document-detail.component.ts - 571 + 572 儲存文件 @@ -7586,7 +7586,7 @@ Save and close / next src/app/components/document-detail/document-detail.component.ts - 580 + 581 儲存並關閉/下一個 @@ -7594,7 +7594,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 632 + 633 取得詮釋資料時發生錯誤 @@ -7602,7 +7602,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 661 + 662 取得建議時發生錯誤。 @@ -7610,11 +7610,11 @@ Document "" saved successfully. src/app/components/document-detail/document-detail.component.ts - 813 + 814 src/app/components/document-detail/document-detail.component.ts - 836 + 837 文件「」儲存成功。 @@ -7622,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 842 + 843 文件「」儲存時發生錯誤 @@ -7630,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 887 + 888 儲存文件時發生錯誤 @@ -7638,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 919 + 920 確定要將文件「」移至垃圾桶? @@ -7646,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 920 + 921 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7658,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 922 + 923 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7670,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 941 + 942 刪除文件時發生錯誤 @@ -7678,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 961 + 962 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7690,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 962 + 963 將永久重新建立此文件的封存檔案。 @@ -7698,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 963 + 964 封存檔案將以目前設定重新產生。 @@ -7706,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 973 + 974 」的重新處理將於背景開始執行。完成後,請關閉並重新打開或重新載入此文件以檢視更新內容。 @@ -7714,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 984 + 985 執行作業時發生錯誤 @@ -7722,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1035 + 1034 下載文件時發生錯誤 @@ -7730,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1114 + 1113 符合頁面大小 @@ -7738,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1325 + 1324 確認拆分 @@ -7746,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1326 + 1325 將把所選的文件拆分成新文件。 @@ -7754,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1342 + 1341 」的拆分將於背景開始執行。 @@ -7762,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1351 + 1350 執行拆分作業時發生錯誤 @@ -7770,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1364 + 1363 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7782,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1365 + 1364 將永久旋轉目前文件的原始版本。 @@ -7790,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1381 + 1380 」的旋轉將於背景開始執行。完成後,請關閉並重新打開或重新載入此文件以檢視更新內容。 @@ -7798,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1393 + 1392 執行旋轉作業時發生錯誤 @@ -7806,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1405 + 1404 確認刪除頁面 @@ -7814,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1406 + 1405 將永久刪除原始文件中所選的頁面。 @@ -7822,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1421 + 1420 」的頁面刪除將於背景開始執行。完成後,請關閉並重新打開或重新載入此文件以檢視更新內容。 @@ -7830,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1430 + 1429 執行頁面刪除作業時發生錯誤 @@ -7838,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1490 + 1489 src/app/components/document-detail/document-detail.component.ts - 1494 + 1493 讀取 TIFF 檔時發生錯誤: diff --git a/src/locale/af_ZA/LC_MESSAGES/django.po b/src/locale/af_ZA/LC_MESSAGES/django.po index f17a811ba..bba8688d8 100644 --- a/src/locale/af_ZA/LC_MESSAGES/django.po +++ b/src/locale/af_ZA/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Afrikaans\n" "Language: af_ZA\n" @@ -1173,12 +1173,12 @@ msgstr "Ongeldige reguliere uitdrukking: %(error)s" msgid "Invalid color." msgstr "Ongeldige kleur." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Lêertipe %(type)s word nie ondersteun nie" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Ongeldige veranderlike bespeur." diff --git a/src/locale/ar_AR/LC_MESSAGES/django.po b/src/locale/ar_AR/LC_MESSAGES/django.po index c0b363213..0e3594352 100644 --- a/src/locale/ar_AR/LC_MESSAGES/django.po +++ b/src/locale/ar_AR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Arabic\n" "Language: ar_SA\n" @@ -1173,12 +1173,12 @@ msgstr "التعبير النظامي خاطىء: %(error)s" msgid "Invalid color." msgstr "لون خاطئ." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "نوع الملف %(type)s غير مدعوم" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "اكتشاف متغير خاطئ." diff --git a/src/locale/be_BY/LC_MESSAGES/django.po b/src/locale/be_BY/LC_MESSAGES/django.po index dc934db3d..e6d1d728d 100644 --- a/src/locale/be_BY/LC_MESSAGES/django.po +++ b/src/locale/be_BY/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Belarusian\n" "Language: be_BY\n" @@ -1173,12 +1173,12 @@ msgstr "Няправільны рэгулярны выраз: %(error)s" msgid "Invalid color." msgstr "Няправільны колер." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Тып файла %(type)s не падтрымліваецца" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Выяўлена няправільная зменная." diff --git a/src/locale/bg_BG/LC_MESSAGES/django.po b/src/locale/bg_BG/LC_MESSAGES/django.po index ef5e2d565..f1111c1a8 100644 --- a/src/locale/bg_BG/LC_MESSAGES/django.po +++ b/src/locale/bg_BG/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 19:48\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Language: bg_BG\n" @@ -778,7 +778,7 @@ msgstr "инстанции на персонализирани полета" #: documents/models.py:929 msgid "Consumption Started" -msgstr "Започната обработка" +msgstr "Стартирана обработка" #: documents/models.py:930 msgid "Document Added" @@ -1173,12 +1173,12 @@ msgstr "Невалиден регулярен израз: %(error)s" msgid "Invalid color." msgstr "Невалиден цвят." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Файловия тип %(type)s не се поддържа" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Засечена е невалидна променлива." @@ -1970,7 +1970,7 @@ msgstr "Вградените прикачени файлове включват #: paperless_mail/models.py:235 msgid "consumption scope" -msgstr "обхват на консумацията" +msgstr "движение обработка" #: paperless_mail/models.py:241 msgid "pdf layout" diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po index 6e9d3e127..6f8877c2e 100644 --- a/src/locale/ca_ES/LC_MESSAGES/django.po +++ b/src/locale/ca_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Language: ca_ES\n" @@ -1173,12 +1173,12 @@ msgstr "Expressió regular invàlida: %(error)s" msgid "Invalid color." msgstr "Color Invàlid." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Tipus arxiu %(type)s no suportat" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Variable detectada invàlida." diff --git a/src/locale/cs_CZ/LC_MESSAGES/django.po b/src/locale/cs_CZ/LC_MESSAGES/django.po index 498eb6c2d..d921d6e7f 100644 --- a/src/locale/cs_CZ/LC_MESSAGES/django.po +++ b/src/locale/cs_CZ/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Czech\n" "Language: cs_CZ\n" @@ -1173,12 +1173,12 @@ msgstr "Neplatný regulární výraz: %(error)s" msgid "Invalid color." msgstr "Neplatná barva." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Typ souboru %(type)s není podporován" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Zjištěna neplatná proměnná." diff --git a/src/locale/da_DK/LC_MESSAGES/django.po b/src/locale/da_DK/LC_MESSAGES/django.po index 24ea27e7e..366837ae0 100644 --- a/src/locale/da_DK/LC_MESSAGES/django.po +++ b/src/locale/da_DK/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Danish\n" "Language: da_DK\n" @@ -1173,12 +1173,12 @@ msgstr "Ugyldigt regulært udtryk: %(error)s" msgid "Invalid color." msgstr "Ugyldig farve." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Filtype %(type)s understøttes ikke" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Ugyldig variabel fundet." diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index 52c4edfca..8087f4be1 100644 --- a/src/locale/de_DE/LC_MESSAGES/django.po +++ b/src/locale/de_DE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -1173,12 +1173,12 @@ msgstr "Ungültiger regulärer Ausdruck: %(error)s" msgid "Invalid color." msgstr "Ungültige Farbe." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Dateityp %(type)s nicht unterstützt" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Ungültige Variable erkannt." diff --git a/src/locale/el_GR/LC_MESSAGES/django.po b/src/locale/el_GR/LC_MESSAGES/django.po index 88bbda7e2..4b641a316 100644 --- a/src/locale/el_GR/LC_MESSAGES/django.po +++ b/src/locale/el_GR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Greek\n" "Language: el_GR\n" @@ -1173,12 +1173,12 @@ msgstr "Άκυρη έκφραση: %(error)s" msgid "Invalid color." msgstr "Άκυρο χρώμα." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Ο τύπος αρχείου %(type)s δεν υποστηρίζεται" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Εντοπίστηκε μη έγκυρη μεταβλητή." diff --git a/src/locale/es_ES/LC_MESSAGES/django.po b/src/locale/es_ES/LC_MESSAGES/django.po index 881863154..6cd7d51ad 100644 --- a/src/locale/es_ES/LC_MESSAGES/django.po +++ b/src/locale/es_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:15\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -1173,12 +1173,12 @@ msgstr "Expresión irregular inválida: %(error)s" msgid "Invalid color." msgstr "Color inválido." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Tipo de fichero %(type)s no suportado" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Variable inválida." diff --git a/src/locale/et_EE/LC_MESSAGES/django.po b/src/locale/et_EE/LC_MESSAGES/django.po index 34c1caf7e..cd4b34c99 100644 --- a/src/locale/et_EE/LC_MESSAGES/django.po +++ b/src/locale/et_EE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Estonian\n" "Language: et_EE\n" @@ -1173,12 +1173,12 @@ msgstr "" msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "" diff --git a/src/locale/fi_FI/LC_MESSAGES/django.po b/src/locale/fi_FI/LC_MESSAGES/django.po index e653f3bc0..68fbd9f3a 100644 --- a/src/locale/fi_FI/LC_MESSAGES/django.po +++ b/src/locale/fi_FI/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Language: fi_FI\n" @@ -1173,12 +1173,12 @@ msgstr "Virheellinen regex-lauseke: %(error)s" msgid "Invalid color." msgstr "Virheellinen väri." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Tiedostotyyppiä %(type)s ei tueta" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Virheellinen muuttuja havaittu." diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po index b3b0df12d..2555075a5 100644 --- a/src/locale/fr_FR/LC_MESSAGES/django.po +++ b/src/locale/fr_FR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -1173,12 +1173,12 @@ msgstr "Expression régulière incorrecte : %(error)s" msgid "Invalid color." msgstr "Couleur incorrecte." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Type de fichier %(type)s non pris en charge" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Variable invalide détectée." diff --git a/src/locale/he_IL/LC_MESSAGES/django.po b/src/locale/he_IL/LC_MESSAGES/django.po index e452de6ca..bea5ab69f 100644 --- a/src/locale/he_IL/LC_MESSAGES/django.po +++ b/src/locale/he_IL/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Language: he_IL\n" @@ -1173,12 +1173,12 @@ msgstr "ביטוי רגולרי בלתי חוקי: %(error)s" msgid "Invalid color." msgstr "צבע לא חוקי." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "סוג קובץ %(type)s לא נתמך" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "משתנה לא חוקי זוהה." diff --git a/src/locale/hr_HR/LC_MESSAGES/django.po b/src/locale/hr_HR/LC_MESSAGES/django.po index 128336482..583927205 100644 --- a/src/locale/hr_HR/LC_MESSAGES/django.po +++ b/src/locale/hr_HR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Croatian\n" "Language: hr_HR\n" @@ -1173,12 +1173,12 @@ msgstr "Nevažeći regularni izraz: %(error)s" msgid "Invalid color." msgstr "Nevažeća boja." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Vrsta datoteke %(type)s nije podržana" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Otkrivena je nevaljana vrsta datoteke." diff --git a/src/locale/hu_HU/LC_MESSAGES/django.po b/src/locale/hu_HU/LC_MESSAGES/django.po index 52afe27af..828370d3b 100644 --- a/src/locale/hu_HU/LC_MESSAGES/django.po +++ b/src/locale/hu_HU/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" @@ -1173,12 +1173,12 @@ msgstr "Érvénytelen reguláris kifejezés: %(error)s" msgid "Invalid color." msgstr "Érvénytelen szín." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Fájltípus %(type)s nem támogatott" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Érvénytelen változót észleltek." diff --git a/src/locale/id_ID/LC_MESSAGES/django.po b/src/locale/id_ID/LC_MESSAGES/django.po index cc2273da0..e2e26ce8f 100644 --- a/src/locale/id_ID/LC_MESSAGES/django.po +++ b/src/locale/id_ID/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Language: id_ID\n" @@ -1173,12 +1173,12 @@ msgstr "Ekspresi reguler tidak sesuai: %(error)s" msgid "Invalid color." msgstr "Warna tidak sesuai." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Jenis berkas %(type)s tidak didukung" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Variabel ilegal terdeteksi." diff --git a/src/locale/it_IT/LC_MESSAGES/django.po b/src/locale/it_IT/LC_MESSAGES/django.po index 85c37fa62..834a252e4 100644 --- a/src/locale/it_IT/LC_MESSAGES/django.po +++ b/src/locale/it_IT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -1173,12 +1173,12 @@ msgstr "Espressione regolare non valida: %(error)s" msgid "Invalid color." msgstr "Colore non valido." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Il tipo di file %(type)s non è supportato" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Variabile non valida rilevata." diff --git a/src/locale/ja_JP/LC_MESSAGES/django.po b/src/locale/ja_JP/LC_MESSAGES/django.po index 249273505..eb4f6674f 100644 --- a/src/locale/ja_JP/LC_MESSAGES/django.po +++ b/src/locale/ja_JP/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Language: ja_JP\n" @@ -1173,12 +1173,12 @@ msgstr "不正な正規表現: %(error)s" msgid "Invalid color." msgstr "無効な色" -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "ファイルタイプ %(type)s はサポートされていません" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "無効な変数を検出しました" diff --git a/src/locale/ko_KR/LC_MESSAGES/django.po b/src/locale/ko_KR/LC_MESSAGES/django.po index c99cd2908..8b73919b7 100644 --- a/src/locale/ko_KR/LC_MESSAGES/django.po +++ b/src/locale/ko_KR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" @@ -1173,12 +1173,12 @@ msgstr "잘못된 정규식: %(error)s" msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "잘못된 변수가 감지되었습니다." diff --git a/src/locale/lb_LU/LC_MESSAGES/django.po b/src/locale/lb_LU/LC_MESSAGES/django.po index ae81032a7..62b918a93 100644 --- a/src/locale/lb_LU/LC_MESSAGES/django.po +++ b/src/locale/lb_LU/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Luxembourgish\n" "Language: lb_LU\n" @@ -1173,12 +1173,12 @@ msgstr "Ongëltege regulären Ausdrock: %(error)s" msgid "Invalid color." msgstr "Ongëlteg Faarf." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Fichierstyp %(type)s net ënnerstëtzt" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Ongëlteg Zeechen detektéiert." diff --git a/src/locale/lt_LT/LC_MESSAGES/django.po b/src/locale/lt_LT/LC_MESSAGES/django.po index c1b42ef15..35d1a97a0 100644 --- a/src/locale/lt_LT/LC_MESSAGES/django.po +++ b/src/locale/lt_LT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Lithuanian\n" "Language: lt_LT\n" @@ -1173,12 +1173,12 @@ msgstr "" msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "" diff --git a/src/locale/lv_LV/LC_MESSAGES/django.po b/src/locale/lv_LV/LC_MESSAGES/django.po index 706605e5c..93427c1fd 100644 --- a/src/locale/lv_LV/LC_MESSAGES/django.po +++ b/src/locale/lv_LV/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Latvian\n" "Language: lv_LV\n" @@ -1173,12 +1173,12 @@ msgstr "" msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "" diff --git a/src/locale/ms_MY/LC_MESSAGES/django.po b/src/locale/ms_MY/LC_MESSAGES/django.po index 7553d1f62..31efbd204 100644 --- a/src/locale/ms_MY/LC_MESSAGES/django.po +++ b/src/locale/ms_MY/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Malay\n" "Language: ms_MY\n" @@ -1173,12 +1173,12 @@ msgstr "" msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "" diff --git a/src/locale/nl_NL/LC_MESSAGES/django.po b/src/locale/nl_NL/LC_MESSAGES/django.po index 6ff9d7e94..55845a7b5 100644 --- a/src/locale/nl_NL/LC_MESSAGES/django.po +++ b/src/locale/nl_NL/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Language: nl_NL\n" @@ -1173,12 +1173,12 @@ msgstr "Ongeldige reguliere expressie: %(error)s" msgid "Invalid color." msgstr "Ongeldig kleur." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Bestandstype %(type)s niet ondersteund" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Ongeldige variabele ontdekt." diff --git a/src/locale/no_NO/LC_MESSAGES/django.po b/src/locale/no_NO/LC_MESSAGES/django.po index 2df3f2f54..1af8da71e 100644 --- a/src/locale/no_NO/LC_MESSAGES/django.po +++ b/src/locale/no_NO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Language: no_NO\n" @@ -1173,12 +1173,12 @@ msgstr "Ugyldig regulært uttrykk: %(error)s" msgid "Invalid color." msgstr "Ugyldig farge." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Filtype %(type)s støttes ikke" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Ugyldig variabel oppdaget." diff --git a/src/locale/pl_PL/LC_MESSAGES/django.po b/src/locale/pl_PL/LC_MESSAGES/django.po index 3a2087a78..4d74fdcdb 100644 --- a/src/locale/pl_PL/LC_MESSAGES/django.po +++ b/src/locale/pl_PL/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -1173,12 +1173,12 @@ msgstr "Nieprawidłowe wyrażenie regularne: %(error)s" msgid "Invalid color." msgstr "Nieprawidłowy kolor." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Typ pliku %(type)s nie jest obsługiwany" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Wykryto nieprawidłową zmienną." diff --git a/src/locale/pt_BR/LC_MESSAGES/django.po b/src/locale/pt_BR/LC_MESSAGES/django.po index d5d0a4ee2..452040e27 100644 --- a/src/locale/pt_BR/LC_MESSAGES/django.po +++ b/src/locale/pt_BR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:15\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -1174,12 +1174,12 @@ msgstr "Expressão regular inválida: %(error)s" msgid "Invalid color." msgstr "Cor inválida." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Tipo de arquivo %(type)s não suportado" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Variável inválida detectada." diff --git a/src/locale/pt_PT/LC_MESSAGES/django.po b/src/locale/pt_PT/LC_MESSAGES/django.po index cdb06f60c..db3681171 100644 --- a/src/locale/pt_PT/LC_MESSAGES/django.po +++ b/src/locale/pt_PT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Language: pt_PT\n" @@ -1173,12 +1173,12 @@ msgstr "Expressão regular inválida: %(error)s" msgid "Invalid color." msgstr "Cor invalida." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Tipo de arquivo %(type)s não suportado" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Variável inválida detetada." diff --git a/src/locale/ro_RO/LC_MESSAGES/django.po b/src/locale/ro_RO/LC_MESSAGES/django.po index d2dda4395..9ab6513b9 100644 --- a/src/locale/ro_RO/LC_MESSAGES/django.po +++ b/src/locale/ro_RO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:15\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Language: ro_RO\n" @@ -1173,12 +1173,12 @@ msgstr "Expresie regulată invalida: %(error)s" msgid "Invalid color." msgstr "Culoare invalidă." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Tip de fișier %(type)s nesuportat" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "" diff --git a/src/locale/ru_RU/LC_MESSAGES/django.po b/src/locale/ru_RU/LC_MESSAGES/django.po index 7c7d6003f..982192401 100644 --- a/src/locale/ru_RU/LC_MESSAGES/django.po +++ b/src/locale/ru_RU/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:15\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -1173,12 +1173,12 @@ msgstr "неверное регулярное выражение: %(error)s" msgid "Invalid color." msgstr "Неверный цвет." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Тип файла %(type)s не поддерживается" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Обнаружена неверная переменная." diff --git a/src/locale/sk_SK/LC_MESSAGES/django.po b/src/locale/sk_SK/LC_MESSAGES/django.po index 1d36638f2..0a7332a83 100644 --- a/src/locale/sk_SK/LC_MESSAGES/django.po +++ b/src/locale/sk_SK/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:15\n" "Last-Translator: \n" "Language-Team: Slovak\n" "Language: sk_SK\n" @@ -1173,12 +1173,12 @@ msgstr "Neplatný regulárny výraz: %(error)s" msgid "Invalid color." msgstr "Neplatná farba." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Typ súboru %(type)s nie je podporovaný" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Zistená neplatná premenná." diff --git a/src/locale/sl_SI/LC_MESSAGES/django.po b/src/locale/sl_SI/LC_MESSAGES/django.po index ef3821807..7f32f4d63 100644 --- a/src/locale/sl_SI/LC_MESSAGES/django.po +++ b/src/locale/sl_SI/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:15\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "Language: sl_SI\n" @@ -1173,12 +1173,12 @@ msgstr "Neveljaven splošen izraz: %(error)s" msgid "Invalid color." msgstr "Napačna barva." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Vrsta datoteke %(type)s ni podprta" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Zaznani neveljavni znaki." diff --git a/src/locale/sr_CS/LC_MESSAGES/django.po b/src/locale/sr_CS/LC_MESSAGES/django.po index 9310fa66f..fda7b4a96 100644 --- a/src/locale/sr_CS/LC_MESSAGES/django.po +++ b/src/locale/sr_CS/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:15\n" "Last-Translator: \n" "Language-Team: Serbian (Latin)\n" "Language: sr_CS\n" @@ -1173,12 +1173,12 @@ msgstr "Nevažeći regularni izraz: %(error)s" msgid "Invalid color." msgstr "Nevažeća boja." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Vrsta datoteke %(type)s nije podržana" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Otkrivena je nevažeća promenljiva." diff --git a/src/locale/sv_SE/LC_MESSAGES/django.po b/src/locale/sv_SE/LC_MESSAGES/django.po index c21f5d283..ee3bdbaec 100644 --- a/src/locale/sv_SE/LC_MESSAGES/django.po +++ b/src/locale/sv_SE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:15\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Language: sv_SE\n" @@ -1173,12 +1173,12 @@ msgstr "Ogiltigt reguljärt uttryck: %(error)s" msgid "Invalid color." msgstr "Ogiltig färg." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Filtypen %(type)s stöds inte" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Ogiltig variabel upptäckt." diff --git a/src/locale/th_TH/LC_MESSAGES/django.po b/src/locale/th_TH/LC_MESSAGES/django.po index 92889ff5a..d98195d39 100644 --- a/src/locale/th_TH/LC_MESSAGES/django.po +++ b/src/locale/th_TH/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:15\n" "Last-Translator: \n" "Language-Team: Thai\n" "Language: th_TH\n" @@ -1173,12 +1173,12 @@ msgstr "Regular expression ไม่ถูกต้อง : %(error)s" msgid "Invalid color." msgstr "สีไม่ถูกต้อง" -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "ไม่รองรับไฟล์ประเภท %(type)s" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "ตรวจพบตัวแปรไม่ถูกต้อง" diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po index ebb3cf3c7..37eedc17a 100644 --- a/src/locale/tr_TR/LC_MESSAGES/django.po +++ b/src/locale/tr_TR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:15\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -1173,12 +1173,12 @@ msgstr "Hatalı Düzenli İfade: %(error)s" msgid "Invalid color." msgstr "Geçersiz renk." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Dosya türü %(type)s desteklenmiyor" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Geçersiz değişken algılandı." diff --git a/src/locale/uk_UA/LC_MESSAGES/django.po b/src/locale/uk_UA/LC_MESSAGES/django.po index be2f0f2e1..3de7ea344 100644 --- a/src/locale/uk_UA/LC_MESSAGES/django.po +++ b/src/locale/uk_UA/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:15\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Language: uk_UA\n" @@ -1173,12 +1173,12 @@ msgstr "Неправильний регулярний вираз: %(error)s" msgid "Invalid color." msgstr "Неправильний колір." -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "Тип файлу %(type)s не підтримується" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "Виявлено неправильну змінну." diff --git a/src/locale/vi_VN/LC_MESSAGES/django.po b/src/locale/vi_VN/LC_MESSAGES/django.po index 562dd8379..68e86b51f 100644 --- a/src/locale/vi_VN/LC_MESSAGES/django.po +++ b/src/locale/vi_VN/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:15\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" @@ -1173,12 +1173,12 @@ msgstr "" msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "" diff --git a/src/locale/zh_CN/LC_MESSAGES/django.po b/src/locale/zh_CN/LC_MESSAGES/django.po index 76417362d..4c5543580 100644 --- a/src/locale/zh_CN/LC_MESSAGES/django.po +++ b/src/locale/zh_CN/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -1173,12 +1173,12 @@ msgstr "无效的正则表达式:%(error)s" msgid "Invalid color." msgstr "无效的颜色" -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "不支持文件类型 %(type)s" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "检测到无效变量。" diff --git a/src/locale/zh_TW/LC_MESSAGES/django.po b/src/locale/zh_TW/LC_MESSAGES/django.po index edcb7a578..e52c9cd70 100644 --- a/src/locale/zh_TW/LC_MESSAGES/django.po +++ b/src/locale/zh_TW/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-04-14 08:54-0700\n" -"PO-Revision-Date: 2025-04-14 15:55\n" +"POT-Creation-Date: 2025-04-19 15:13-0700\n" +"PO-Revision-Date: 2025-04-19 22:14\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Language: zh_TW\n" @@ -1173,12 +1173,12 @@ msgstr "無效的正則表達式:%(error)s" msgid "Invalid color." msgstr "無效的顏色。" -#: documents/serialisers.py:1600 +#: documents/serialisers.py:1614 #, python-format msgid "File type %(type)s not supported" msgstr "不支援檔案類型 %(type)s" -#: documents/serialisers.py:1689 +#: documents/serialisers.py:1703 msgid "Invalid variable detected." msgstr "偵測到無效的變數。"