From df9136e7d4df12069f5dea4736532afbc36e84ab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Oct 2025 10:56:48 -0700 Subject: [PATCH 001/133] Changelog v2.19.2 - GHA (#11153) Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- docs/changelog.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/docs/changelog.md b/docs/changelog.md index 4c80c2ea3..2523e4f3a 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,26 @@ # Changelog +## paperless-ngx 2.19.2 + +### Features / Enhancements + +- Fixhancement: display loading status for tags instead of 'Private' [@shamoon](https://github.com/shamoon) ([#11140](https://github.com/paperless-ngx/paperless-ngx/pull/11140)) + +### Bug Fixes + +- Fix: Remove edit requirement for bulk email, show based on setting [@shamoon](https://github.com/shamoon) ([#11149](https://github.com/paperless-ngx/paperless-ngx/pull/11149)) +- Fix: handle undefined IDs in getOriginalObject [@shamoon](https://github.com/shamoon) ([#11147](https://github.com/paperless-ngx/paperless-ngx/pull/11147)) + +### All App Changes + +
+3 changes + +- Fix: Remove edit requirement for bulk email, show based on setting [@shamoon](https://github.com/shamoon) ([#11149](https://github.com/paperless-ngx/paperless-ngx/pull/11149)) +- Fix: handle undefined IDs in getOriginalObject [@shamoon](https://github.com/shamoon) ([#11147](https://github.com/paperless-ngx/paperless-ngx/pull/11147)) +- Fixhancement: display loading status for tags instead of 'Private' [@shamoon](https://github.com/shamoon) ([#11140](https://github.com/paperless-ngx/paperless-ngx/pull/11140)) +
+ ## paperless-ngx 2.19.1 ### Bug Fixes From a11a2ec13f1c47ac4c99104ba94b896186bdf39f Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 23 Oct 2025 15:29:49 -0700 Subject: [PATCH 002/133] Fix: resolve migration warning in 2.19.2 (#11157) --- .../migrations/1073_migrate_workflow_title_jinja.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/documents/migrations/1073_migrate_workflow_title_jinja.py b/src/documents/migrations/1073_migrate_workflow_title_jinja.py index 3f5689629..c3f929eff 100644 --- a/src/documents/migrations/1073_migrate_workflow_title_jinja.py +++ b/src/documents/migrations/1073_migrate_workflow_title_jinja.py @@ -35,15 +35,13 @@ class Migration(migrations.Migration): operations = [ migrations.AlterField( - model_name="WorkflowAction", + model_name="workflowaction", name="assign_title", field=models.TextField( - null=True, blank=True, - help_text=( - "Assign a document title, can be a JINJA2 template, " - "see documentation.", - ), + help_text="Assign a document title, must be a Jinja2 template, see documentation.", + null=True, + verbose_name="assign title", ), ), migrations.RunPython( From 276dc31abea03bbeb1c8a723520f2445135f4968 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 24 Oct 2025 09:42:05 -0700 Subject: [PATCH 003/133] Fix: add missing import of ConfirmButtonComponent in user-edit-dialog (#11167) --- src-ui/messages.xlf | 10 +++++----- .../user-edit-dialog/user-edit-dialog.component.ts | 2 ++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 8eb325858..f466c2c09 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -4539,32 +4539,32 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 diff --git a/src-ui/src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts b/src-ui/src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts index 86e60151b..1c87a4308 100644 --- a/src-ui/src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts +++ b/src-ui/src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts @@ -14,6 +14,7 @@ import { GroupService } from 'src/app/services/rest/group.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 { ConfirmButtonComponent } from '../../confirm-button/confirm-button.component' import { PasswordComponent } from '../../input/password/password.component' import { SelectComponent } from '../../input/select/select.component' import { TextComponent } from '../../input/text/text.component' @@ -28,6 +29,7 @@ import { PermissionsSelectComponent } from '../../permissions-select/permissions SelectComponent, TextComponent, PasswordComponent, + ConfirmButtonComponent, FormsModule, ReactiveFormsModule, ], From 63dab0ab09448e84efed3c469d7a08f5b3b80c05 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 24 Oct 2025 16:25:59 -0700 Subject: [PATCH 004/133] Change: restrict superuser modifications to superusers only --- src/documents/tests/test_admin.py | 35 +++++++++++++++++++++++++++++++ src/paperless/views.py | 4 ++++ 2 files changed, 39 insertions(+) diff --git a/src/documents/tests/test_admin.py b/src/documents/tests/test_admin.py index 278014f7c..61a579dc7 100644 --- a/src/documents/tests/test_admin.py +++ b/src/documents/tests/test_admin.py @@ -2,9 +2,11 @@ import types from unittest.mock import patch from django.contrib.admin.sites import AdminSite +from django.contrib.auth.models import Permission from django.contrib.auth.models import User from django.test import TestCase from django.utils import timezone +from rest_framework import status from documents import index from documents.admin import DocumentAdmin @@ -125,3 +127,36 @@ class TestPaperlessAdmin(DirectoriesMixin, TestCase): form.request = types.SimpleNamespace(user=superuser) self.assertTrue(form.is_valid()) self.assertEqual({}, form.errors) + + def test_superuser_can_only_be_modified_by_superuser(self): + superuser = User.objects.create_superuser(username="superuser", password="test") + user = User.objects.create( + username="test", + is_superuser=False, + is_staff=True, + ) + change_user_perm = Permission.objects.get(codename="change_user") + user.user_permissions.add(change_user_perm) + + self.client.force_login(user) + response = self.client.patch( + f"/api/users/{superuser.pk}/", + {"first_name": "Updated"}, + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN) + self.assertEqual( + response.content.decode(), + "Superusers can only be modified by other superusers", + ) + + self.client.logout() + self.client.force_login(superuser) + response = self.client.patch( + f"/api/users/{superuser.pk}/", + {"first_name": "Updated"}, + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + superuser.refresh_from_db() + self.assertEqual(superuser.first_name, "Updated") diff --git a/src/paperless/views.py b/src/paperless/views.py index fc5bb5463..69375e1bc 100644 --- a/src/paperless/views.py +++ b/src/paperless/views.py @@ -125,6 +125,10 @@ class UserViewSet(ModelViewSet): def update(self, request, *args, **kwargs): user_to_update: User = self.get_object() + if not request.user.is_superuser and user_to_update.is_superuser: + return HttpResponseForbidden( + "Superusers can only be modified by other superusers", + ) if ( not request.user.is_superuser and request.data.get("is_superuser") is not None From 1c4fa7237c150b68647c7e3fac4de041b02e4319 Mon Sep 17 00:00:00 2001 From: Tom Hu <88201630+thomasrockhu-codecov@users.noreply.github.com> Date: Sun, 26 Oct 2025 18:07:36 +0400 Subject: [PATCH 005/133] Chore: Move to using the codecov action instead of the test-results-action (#11179) --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a560c506e..17e9a4109 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -181,10 +181,11 @@ jobs: pytest - name: Upload backend test results to Codecov if: always() - uses: codecov/test-results-action@v1 + uses: codecov/codecov-action@v5 with: flags: backend-python-${{ matrix.python-version }} files: junit.xml + report_type: test_results - name: Upload backend coverage to Codecov uses: codecov/codecov-action@v5 with: @@ -260,11 +261,12 @@ jobs: - name: Run Jest unit tests run: cd src-ui && pnpm run test --max-workers=2 --shard=${{ matrix.shard-index }}/${{ matrix.shard-count }} - name: Upload frontend test results to Codecov - uses: codecov/test-results-action@v1 if: always() + uses: codecov/codecov-action@v5 with: flags: frontend-node-${{ matrix.node-version }} directory: src-ui/ + report_type: test_results - name: Upload frontend coverage to Codecov uses: codecov/codecov-action@v5 with: From cbe8bc35d6beb9a0baf3a1751828de70906c1dc4 Mon Sep 17 00:00:00 2001 From: Lukas Behrendt Date: Sun, 26 Oct 2025 15:40:37 +0100 Subject: [PATCH 006/133] Chore: fix Postgres compose volume mount path in install script (#11184) Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- install-paperless-ngx.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-paperless-ngx.sh b/install-paperless-ngx.sh index 648196030..053260879 100755 --- a/install-paperless-ngx.sh +++ b/install-paperless-ngx.sh @@ -374,7 +374,7 @@ fi # of the provided folder if [[ -n $DATABASE_FOLDER ]] ; then if [[ "$DATABASE_BACKEND" == "postgres" ]] ; then - sed -i "s#- pgdata:/var/lib/postgresql/data#- $DATABASE_FOLDER:/var/lib/postgresql/data#g" docker-compose.yml + sed -i "s#- pgdata:/var/lib/postgresql#- $DATABASE_FOLDER:/var/lib/postgresql#g" docker-compose.yml sed -i "/^\s*pgdata:/d" docker-compose.yml elif [[ "$DATABASE_BACKEND" == "mariadb" ]]; then sed -i "s#- dbdata:/var/lib/mysql#- $DATABASE_FOLDER:/var/lib/mysql#g" docker-compose.yml From 701aafce0672adcf4a203046c8882633861c9e3b Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 26 Oct 2025 12:14:31 -0700 Subject: [PATCH 007/133] Update issue and discussion templates --- .github/DISCUSSION_TEMPLATE/support.yml | 2 +- .github/ISSUE_TEMPLATE/bug-report.yml | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/DISCUSSION_TEMPLATE/support.yml b/.github/DISCUSSION_TEMPLATE/support.yml index 18c0812f2..311aaf7f3 100644 --- a/.github/DISCUSSION_TEMPLATE/support.yml +++ b/.github/DISCUSSION_TEMPLATE/support.yml @@ -51,5 +51,5 @@ body: id: logs attributes: label: Relevant logs or output - description: If you have logs, errors that might help, paste it here. + description: If you have logs, errors that might help, paste it here. For example other containers or services (database, redis, etc). render: bash diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 07e9e4690..b6baf49bf 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -6,8 +6,8 @@ body: - type: markdown attributes: value: | - ### ⚠️ Please remember: issues are for *bugs* - That is, something you believe affects every single user of Paperless-ngx, not just you. If you're not sure, start with one of the other options below. + ### ⚠️ Please remember: issues are for *bugs* only! ⚠️ + That is, something you believe affects every single user of Paperless-ngx (and the demo, for example), not just you. If you are not sure, start with one of the other options below. Also, note that **Paperless-ngx does not perform OCR or archive file creation itself**, those are handled by other tools. Problems with OCR or archive versions of specific files should likely be raised 'upstream', see https://github.com/ocrmypdf/OCRmyPDF/issues or https://github.com/tesseract-ocr/tesseract/issues - type: markdown @@ -59,6 +59,12 @@ body: label: Browser logs description: Logs from the web browser related to your issue, if needed render: bash + - type: textarea + id: logs_services + attributes: + label: Services logs + description: Logs from other services (or containers) related to your issue, if needed. For example, the database or redis logs. + render: bash - type: input id: version attributes: From 48d21da13b512f42c8dc0d417720d6da0bc66bb3 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 27 Oct 2025 10:37:57 -0700 Subject: [PATCH 008/133] Fix: support ConsumableDocument in email attachments (#11196) --- src/documents/mail.py | 29 ++++++----- src/documents/tests/test_workflows.py | 75 +++++++++++++++++++++++++++ 2 files changed, 92 insertions(+), 12 deletions(-) diff --git a/src/documents/mail.py b/src/documents/mail.py index 240b41e18..6af48ca9b 100644 --- a/src/documents/mail.py +++ b/src/documents/mail.py @@ -7,6 +7,8 @@ from django.conf import settings from django.core.mail import EmailMessage from filelock import FileLock +from documents.data_models import ConsumableDocument + if TYPE_CHECKING: from documents.models import Document @@ -15,7 +17,7 @@ def send_email( subject: str, body: str, to: list[str], - attachments: list[Document], + attachments: list[Document | ConsumableDocument], *, use_archive: bool, ) -> int: @@ -45,17 +47,20 @@ def send_email( # Something could be renaming the file concurrently so it can't be attached with FileLock(settings.MEDIA_LOCK): for document in attachments: - attachment_path = ( - document.archive_path - if use_archive and document.has_archive_version - else document.source_path - ) - - friendly_filename = _get_unique_filename( - document, - used_filenames, - archive=use_archive and document.has_archive_version, - ) + if isinstance(document, ConsumableDocument): + attachment_path = document.original_file + friendly_filename = document.original_file.name + else: + attachment_path = ( + document.archive_path + if use_archive and document.has_archive_version + else document.source_path + ) + friendly_filename = _get_unique_filename( + document, + used_filenames, + archive=use_archive and document.has_archive_version, + ) used_filenames.add(friendly_filename) with attachment_path.open("rb") as f: diff --git a/src/documents/tests/test_workflows.py b/src/documents/tests/test_workflows.py index a6da01578..c25565ae6 100644 --- a/src/documents/tests/test_workflows.py +++ b/src/documents/tests/test_workflows.py @@ -30,6 +30,7 @@ from pytest_django.fixtures import SettingsWrapper from documents import tasks from documents.data_models import ConsumableDocument +from documents.data_models import DocumentMetadataOverrides from documents.data_models import DocumentSource from documents.matching import document_matches_workflow from documents.matching import existing_document_matches_workflow @@ -2788,6 +2789,80 @@ class TestWorkflows( self.assertEqual(doc.tags.all().count(), 1) self.assertIn(self.t2, doc.tags.all()) + @override_settings( + PAPERLESS_EMAIL_HOST="localhost", + EMAIL_ENABLED=True, + PAPERLESS_URL="http://localhost:8000", + ) + @mock.patch("django.core.mail.message.EmailMessage.send") + def test_workflow_assignment_then_email_includes_attachment(self, mock_email_send): + """ + GIVEN: + - Workflow with assignment and email actions + - Email action configured to include the document + WHEN: + - Workflow is run on a newly created document + THEN: + - Email action sends the document as an attachment + """ + + storage_path = StoragePath.objects.create( + name="sp2", + path="workflow/{{ document.pk }}", + ) + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + ) + assignment_action = WorkflowAction.objects.create( + type=WorkflowAction.WorkflowActionType.ASSIGNMENT, + assign_storage_path=storage_path, + assign_owner=self.user2, + ) + assignment_action.assign_tags.add(self.t1) + + email_action_config = WorkflowActionEmail.objects.create( + subject="Doc ready {doc_title}", + body="Document URL: {doc_url}", + to="owner@example.com", + include_document=True, + ) + email_action = WorkflowAction.objects.create( + type=WorkflowAction.WorkflowActionType.EMAIL, + email=email_action_config, + ) + + workflow = Workflow.objects.create(name="Assignment then email", order=0) + workflow.triggers.add(trigger) + workflow.actions.set([assignment_action, email_action]) + + temp_working_copy = shutil.copy( + self.SAMPLE_DIR / "simple.pdf", + self.dirs.scratch_dir / "working-copy.pdf", + ) + + Document.objects.create( + title="workflow doc", + correspondent=self.c, + checksum="wf-assignment-email", + mime_type="application/pdf", + ) + + consumable_document = ConsumableDocument( + source=DocumentSource.ConsumeFolder, + original_file=temp_working_copy, + ) + + mock_email_send.return_value = 1 + + with self.assertNoLogs("paperless.handlers", level="ERROR"): + run_workflows( + WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + consumable_document, + overrides=DocumentMetadataOverrides(), + ) + + mock_email_send.assert_called_once() + @override_settings( PAPERLESS_EMAIL_HOST="localhost", EMAIL_ENABLED=True, From cd81f750b4a39b9f7c12949fa7c062aa4489486b Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Mon, 27 Oct 2025 13:24:57 -0700 Subject: [PATCH 009/133] Chore: Minor migration optimization for workflow titles (#11197) * Makes the migration just a little more efficient * Do it in batches, just in case * Fixes the model klass name --- .../1073_migrate_workflow_title_jinja.py | 42 ++++++++++++------- 1 file changed, 27 insertions(+), 15 deletions(-) diff --git a/src/documents/migrations/1073_migrate_workflow_title_jinja.py b/src/documents/migrations/1073_migrate_workflow_title_jinja.py index c3f929eff..9d80a277f 100644 --- a/src/documents/migrations/1073_migrate_workflow_title_jinja.py +++ b/src/documents/migrations/1073_migrate_workflow_title_jinja.py @@ -3,7 +3,6 @@ import logging from django.db import migrations from django.db import models -from django.db import transaction from documents.templating.utils import convert_format_str_to_template_format @@ -11,21 +10,34 @@ logger = logging.getLogger("paperless.migrations") def convert_from_format_to_template(apps, schema_editor): - WorkflowActions = apps.get_model("documents", "WorkflowAction") + WorkflowAction = apps.get_model("documents", "WorkflowAction") - with transaction.atomic(): - for WorkflowAction in WorkflowActions.objects.all(): - if not WorkflowAction.assign_title: - continue - WorkflowAction.assign_title = convert_format_str_to_template_format( - WorkflowAction.assign_title, - ) - logger.debug( - "Converted WorkflowAction id %d title to template format: %s", - WorkflowAction.id, - WorkflowAction.assign_title, - ) - WorkflowAction.save() + batch_size = 500 + actions_to_update = [] + + queryset = ( + WorkflowAction.objects.filter(assign_title__isnull=False) + .exclude(assign_title="") + .only("id", "assign_title") + ) + + for action in queryset: + action.assign_title = convert_format_str_to_template_format( + action.assign_title, + ) + logger.debug( + "Converted WorkflowAction id %d title to template format: %s", + action.id, + action.assign_title, + ) + actions_to_update.append(action) + + if actions_to_update: + WorkflowAction.objects.bulk_update( + actions_to_update, + ["assign_title"], + batch_size=batch_size, + ) class Migration(migrations.Migration): From d0bd111eaba58c061c381b279c5dad8913b47a39 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 27 Oct 2025 13:51:39 -0700 Subject: [PATCH 010/133] Change: make workflowrun a softdeletemodel (#11194) --- ...ted_at_workflowrun_restored_at_and_more.py | 28 +++++++++++++++++++ src/documents/models.py | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 src/documents/migrations/1074_workflowrun_deleted_at_workflowrun_restored_at_and_more.py diff --git a/src/documents/migrations/1074_workflowrun_deleted_at_workflowrun_restored_at_and_more.py b/src/documents/migrations/1074_workflowrun_deleted_at_workflowrun_restored_at_and_more.py new file mode 100644 index 000000000..4381eabb1 --- /dev/null +++ b/src/documents/migrations/1074_workflowrun_deleted_at_workflowrun_restored_at_and_more.py @@ -0,0 +1,28 @@ +# Generated by Django 5.2.6 on 2025-10-27 15:11 + +from django.db import migrations +from django.db import models + + +class Migration(migrations.Migration): + dependencies = [ + ("documents", "1073_migrate_workflow_title_jinja"), + ] + + operations = [ + migrations.AddField( + model_name="workflowrun", + name="deleted_at", + field=models.DateTimeField(blank=True, null=True), + ), + migrations.AddField( + model_name="workflowrun", + name="restored_at", + field=models.DateTimeField(blank=True, null=True), + ), + migrations.AddField( + model_name="workflowrun", + name="transaction_id", + field=models.UUIDField(blank=True, null=True), + ), + ] diff --git a/src/documents/models.py b/src/documents/models.py index 4794bc82f..12dab2b6d 100644 --- a/src/documents/models.py +++ b/src/documents/models.py @@ -1547,7 +1547,7 @@ class Workflow(models.Model): return f"Workflow: {self.name}" -class WorkflowRun(models.Model): +class WorkflowRun(SoftDeleteModel): workflow = models.ForeignKey( Workflow, on_delete=models.CASCADE, From 35bc67364811423114f41c8ad44424123e09ec7c Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 27 Oct 2025 21:09:19 -0700 Subject: [PATCH 011/133] Update workflows.py --- src/documents/templating/workflows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/templating/workflows.py b/src/documents/templating/workflows.py index 25f1e57ef..67f3ac930 100644 --- a/src/documents/templating/workflows.py +++ b/src/documents/templating/workflows.py @@ -80,7 +80,7 @@ def parse_w_workflow_placeholders( if doc_url is not None: formatting.update({"doc_url": doc_url}) - logger.debug(f"Jinja Template is : {text}") + logger.debug(f"Parsing Workflow Jinja template: {text}") try: template = _template_environment.from_string( text, From d904aaef60a90cd02e20db385b87cf5b005c63f9 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 28 Oct 2025 10:14:42 -0700 Subject: [PATCH 012/133] Change: make workflow action only title draggable (#11209) --- .../workflow-edit-dialog.component.html | 8 +++++--- .../workflow-edit-dialog.component.scss | 4 ++++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html index 61daa1fa2..fab644baa 100644 --- a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html +++ b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -77,9 +77,11 @@
@for (action of object?.actions; track action; let i = $index){ -
-
- + @if (canSaveSettings) { + + }
- Select: + Select:
@if (list.selected.size > 0) { From 906e841ded668bd7e5b3e06b5b173c1e4b97cf7f Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 14:21:38 +0000 Subject: [PATCH 043/133] Auto translate strings --- src-ui/messages.xlf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 977539289..0b590cbdf 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -7888,6 +7888,13 @@ 308 + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + None From a9dfe8f3f7057238c596e2804883bf4f5bd916ba Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 3 Nov 2025 08:42:29 -0800 Subject: [PATCH 044/133] Fix: use original_file when attaching docs to workflow emails with added trigger (#11266) --- src/documents/signals/handlers.py | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index 8862b064b..22abf625e 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -31,6 +31,8 @@ from guardian.shortcuts import remove_perm from documents import matching from documents.caching import clear_document_caches +from documents.data_models import ConsumableDocument +from documents.data_models import DocumentSource from documents.file_handling import create_source_path_directory from documents.file_handling import delete_empty_directories from documents.file_handling import generate_unique_filename @@ -55,7 +57,6 @@ from documents.templating.workflows import parse_w_workflow_placeholders if TYPE_CHECKING: from documents.classifier import DocumentClassifier - from documents.data_models import ConsumableDocument from documents.data_models import DocumentMetadataOverrides logger = logging.getLogger("paperless.handlers") @@ -1163,8 +1164,21 @@ def run_workflows( ) try: attachments = [] - if action.email.include_document and original_file: - attachments = [document] + if action.email.include_document: + if trigger_type in [ + WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED, + WorkflowTrigger.WorkflowTriggerType.SCHEDULED, + ]: + # Updated and scheduled can pass the document directly + attachments = [document] + elif original_file: + # For consumed and added document is not yet saved, so pass the original file + attachments = [ + ConsumableDocument( + source=DocumentSource.ApiUpload, + original_file=original_file, + ), + ] n_messages = send_email( subject=subject, body=body, From 2a4e8f9acd98bfb1c1cc9f0d3f6d78320e6aad6e Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 3 Nov 2025 09:46:35 -0800 Subject: [PATCH 045/133] Performance: re-enable virtual scroll, bump ng-select (#11279) --- src-ui/package.json | 2 +- src-ui/pnpm-lock.yaml | 12 ++++++------ .../custom-fields-query-dropdown.component.html | 1 + .../common/input/select/select.component.html | 1 + .../common/input/tags/tags.component.spec.ts | 2 +- .../components/common/input/tags/tags.component.ts | 2 +- 6 files changed, 11 insertions(+), 9 deletions(-) diff --git a/src-ui/package.json b/src-ui/package.json index e75aa3a24..2589a048c 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -21,7 +21,7 @@ "@angular/platform-browser-dynamic": "~20.3.2", "@angular/router": "~20.3.2", "@ng-bootstrap/ng-bootstrap": "^19.0.1", - "@ng-select/ng-select": "^20.2.2", + "@ng-select/ng-select": "^20.6.3", "@ngneat/dirty-check-forms": "^3.0.3", "@popperjs/core": "^2.11.8", "bootstrap": "^5.3.8", diff --git a/src-ui/pnpm-lock.yaml b/src-ui/pnpm-lock.yaml index 5c75a1419..13a84f1c2 100644 --- a/src-ui/pnpm-lock.yaml +++ b/src-ui/pnpm-lock.yaml @@ -39,8 +39,8 @@ importers: specifier: ^19.0.1 version: 19.0.1(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@popperjs/core@2.11.8)(rxjs@7.8.2) '@ng-select/ng-select': - specifier: ^20.2.2 - version: 20.2.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)) + specifier: ^20.6.3 + version: 20.6.3(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)) '@ngneat/dirty-check-forms': specifier: ^3.0.3 version: 3.0.3(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/router@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(lodash-es@4.17.21)(rxjs@7.8.2) @@ -2356,9 +2356,9 @@ packages: '@popperjs/core': ^2.11.8 rxjs: ^6.5.3 || ^7.4.0 - '@ng-select/ng-select@20.2.2': - resolution: {integrity: sha512-7mctt04/q9yquE4Ec1dQG+SkY6fZ2BQnJLsWmb05TCxYKAYAzDrDTgJJruPDuWrpYx+f3SwejpaI+z/GDrwYdw==} - engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + '@ng-select/ng-select@20.6.3': + resolution: {integrity: sha512-+aX2l3OshyPsyMCAuiA3ND5c6X1DG5jQjdlP8PBIyYEoQWlxEcgJWrMsPa7mHVFRpp+5KZZhnXhyosUE4CEc3w==} + engines: {node: ^22.12.0 || >=24.0.0} peerDependencies: '@angular/common': ^20.0.0 '@angular/core': ^20.0.0 @@ -9413,7 +9413,7 @@ snapshots: rxjs: 7.8.2 tslib: 2.8.1 - '@ng-select/ng-select@20.2.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))': + '@ng-select/ng-select@20.6.3(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))': dependencies: '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) diff --git a/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html b/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html index a8973e702..7761ecb89 100644 --- a/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html +++ b/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html @@ -63,6 +63,7 @@ bindValue="id" [(ngModel)]="atom.value" [disabled]="disabled" + [virtualScroll]="getSelectOptionsForField(atom.field)?.length > 100" (mousedown)="$event.stopImmediatePropagation()" > } @else if (getCustomFieldByID(atom.field)?.data_type === CustomFieldDataType.DocumentLink) { diff --git a/src-ui/src/app/components/common/input/select/select.component.html b/src-ui/src/app/components/common/input/select/select.component.html index eb351cbe6..3cfbfe330 100644 --- a/src-ui/src/app/components/common/input/select/select.component.html +++ b/src-ui/src/app/components/common/input/select/select.component.html @@ -29,6 +29,7 @@ [multiple]="multiple" [bindLabel]="bindLabel" bindValue="id" + [virtualScroll]="items?.length > 100" (change)="onChange(value)" (search)="onSearch($event)" (focus)="clearLastSearchTerm()" diff --git a/src-ui/src/app/components/common/input/tags/tags.component.spec.ts b/src-ui/src/app/components/common/input/tags/tags.component.spec.ts index 3c69fbade..84f1c4817 100644 --- a/src-ui/src/app/components/common/input/tags/tags.component.spec.ts +++ b/src-ui/src/app/components/common/input/tags/tags.component.spec.ts @@ -138,7 +138,7 @@ describe('TagsComponent', () => { settingsService.currentUser = { id: 1 } let activeInstances: NgbModalRef[] modalService.activeInstances.subscribe((v) => (activeInstances = v)) - component.select.searchTerm = 'foobar' + component.select.filter('foobar') component.createTag() expect(modalService.hasOpenModals()).toBeTruthy() expect(activeInstances[0].componentInstance.object.name).toEqual('foobar') diff --git a/src-ui/src/app/components/common/input/tags/tags.component.ts b/src-ui/src/app/components/common/input/tags/tags.component.ts index 323d3ddf1..4546dabcb 100644 --- a/src-ui/src/app/components/common/input/tags/tags.component.ts +++ b/src-ui/src/app/components/common/input/tags/tags.component.ts @@ -169,7 +169,7 @@ export class TagsComponent implements OnInit, ControlValueAccessor { if (name) modal.componentInstance.object = { name: name } else if (this.select.searchTerm) modal.componentInstance.object = { name: this.select.searchTerm } - this.select.searchTerm = null + this.select.filter(null) this.select.detectChanges() return firstValueFrom( (modal.componentInstance as TagEditDialogComponent).succeeded.pipe( From 1d396d91603089913102084d9fa656397349c450 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 17:48:25 +0000 Subject: [PATCH 046/133] Auto translate strings --- src-ui/messages.xlf | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 0b590cbdf..63360c991 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -3421,11 +3421,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 @@ -3436,29 +3436,29 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3469,7 +3469,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3496,21 +3496,21 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 @@ -5444,7 +5444,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html From 846cc47565ce4c6f0b4f51b5cab94839cd6c0fde Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 15:34:23 -0800 Subject: [PATCH 047/133] New Crowdin translations by GitHub Action (#11238) --- src-ui/src/locale/messages.af_ZA.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.ar_AR.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.be_BY.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.bg_BG.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.ca_ES.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.cs_CZ.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.da_DK.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.de_DE.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.el_GR.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.es_ES.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.et_EE.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.fa_IR.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.fi_FI.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.fr_FR.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.he_IL.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.hr_HR.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.hu_HU.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.id_ID.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.it_IT.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.ja_JP.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.ko_KR.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.lb_LU.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.lt_LT.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.lv_LV.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.ms_MY.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.nl_NL.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.no_NO.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.pl_PL.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.pt_BR.xlf | 229 ++++++++++++++----------- src-ui/src/locale/messages.pt_PT.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.ro_RO.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.ru_RU.xlf | 188 +++++++++++--------- src-ui/src/locale/messages.sk_SK.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.sl_SI.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.sr_CS.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.sv_SE.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.th_TH.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.tr_TR.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.uk_UA.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.vi_VN.xlf | 188 +++++++++++--------- src-ui/src/locale/messages.zh_CN.xlf | 184 +++++++++++--------- src-ui/src/locale/messages.zh_TW.xlf | 184 +++++++++++--------- src/locale/de_DE/LC_MESSAGES/django.po | 2 +- src/locale/pt_BR/LC_MESSAGES/django.po | 24 +-- src/locale/ru_RU/LC_MESSAGES/django.po | 4 +- src/locale/th_TH/LC_MESSAGES/django.po | 8 +- 46 files changed, 4330 insertions(+), 3489 deletions(-) diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf index 959eb0f61..4e85b7bb9 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Instellings @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logboeke @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Fout by die bewaar van instellings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Lêertake @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Gebruikers & Groepe @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentasie @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Bewaarde aansigte @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Open dokumente @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Sluit alles @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Bestuur @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-pos @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is beskikbaar. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klik om te bekyk. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx kan outomaties na bywerkings soek @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Hoe werk dit? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Bywerking beskikbaar @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Fout by die bewaar van instellings vir soek na bywerkings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Kies alles + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Geen - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index fdf4487ef..51d6b1cc8 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 الإعدادات @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 السجلات @@ -742,11 +742,35 @@ راجع ملفات السجلات للتطبيق ولفحص البريد الإلكتروني. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + إظهار + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 حدث خطأ في أثناء حفظ الإعدادات. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 ملف المهام @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 سلة المهملات @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 المستخدمين & المجموعات @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 الوثائق @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 طرق العرض المحفوظة @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 فتح المستندات @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 إغلاق الكل @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 إدارة @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 البريد @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 الإدارة @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 التهيئة @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 Github @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 متوفر. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 انقر للعرض. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx يتحقق تلقائياً من وجود تحديثات @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 كيف يعمل هذا؟ @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 يتوفر تحديث @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 تم تحديث طرق عرض الشريط الجانبي @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 خطأ في تحديث طرق عرض الشريط الجانبي @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 حدث خطأ في أثناء حفظ إعدادات التحقق من التحديث. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ تحديد الكل + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ لا شيء - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - إظهار - Sort diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index c103f2949..cf2df56a9 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Наладкі @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Логі @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Адбылася памылка пры захаванні налад. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Файлавыя задачы @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Дакументацыя @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Захаваныя выгляды @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Адкрыць дакументы @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Закрыць усё @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Кіраванне @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 даступна. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Націсніце, каб убачыць. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx можа аўтаматычна правяраць наяўнасць абнаўленняў @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Як гэта працуе? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Даступна абнаўленне @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Адбылася памылка падчас захавання налад праверкі абнаўленняў. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Выбраць усё + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf index 77f09d130..f48766554 100644 --- a/src-ui/src/locale/messages.bg_BG.xlf +++ b/src-ui/src/locale/messages.bg_BG.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Настройки @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Дневници @@ -742,11 +742,35 @@ Прегледайте регистрационните файлове за приложението и за проверка на имейл. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Покажи + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Възникна грешка при запазване на настройките. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Файлови задачи @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Кошче @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Потребители & Групи @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Документация @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Запазени изгледи @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Отворени документи @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Затвори всички @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Управление @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Поща @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Администрация @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Конфигурация @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 е налично. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Натисни за преглед. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx може автоматично да проверява за актуализации @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Как работи това? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Налична актуализация @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Изгледите на страничната лента са актуализирани @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Грешка при актуализиране на изгледите на страничната лента @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Възникна грешка при запазване на настройките за проверка за актуализация. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Правилно @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Грешно @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Търсене в документи... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Не @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Добавете заявка @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Добавете израз @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Възникна грешка при зареждането на tiff: @@ -8670,6 +8694,14 @@ Избери всички + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Нищо - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Покажи - Sort diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index c66d62491..ee2cc3388 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Opcions @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Registres @@ -742,11 +742,35 @@ Revisa els fitxers de registre de l'aplicació i per a la comprovació del correu electrònic. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Mostra + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Error al guardar opcions. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tasques d'arxiu @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Brossa @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Usuaris i grups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentació @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Vistes guardades @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Obre document @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Tanca-ho tot @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Gestiona @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Correu @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administració @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuració @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 està disponible. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Cliqueu per veure. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx pot cercar actualitzacions automàticament @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Com funciona? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Actualització disponible @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Vistes laterals actualitzades @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error a l'actualitzar vistes laterals @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 S'ha produït un error en desar la configuració de comprovació d'actualitzacions. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Vertader @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Fals @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Cerca docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 No @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Afegir consulta @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Afegir expressió @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Impressió fallida. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error carregant document per imprimir. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Error al carregar tiff: @@ -8670,6 +8694,14 @@ Selecciona tot + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Cap - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Mostra - Sort diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index a634ca5da..a1102aa48 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Nastavení @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Záznamy @@ -742,11 +742,35 @@ Prohlédněte si soubory protokolu pro aplikaci a pro kontrolu e-mailů. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Zobrazit + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Při ukládání nastavení došlo k chybě. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Úlohy souborů @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Koš @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Uživatelé a skupiny @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentace @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Uložené pohledy @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Otevřené dokumenty @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zavřít vše @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Správa @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Pošta @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrace @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfigurace @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 je k dispozici. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klikněte pro zobrazení. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx umí automaticky kontrolovat aktualizace @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Jak to funguje? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Je dostupná aktualizace @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Pohledy postranního panelu aktualizovány @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Chyba při aktualizaci pohledů postranního panelu @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Došlo k chybě při ukládání nastavení kontroly aktualizací. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Pravda @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Nepravda @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Hledat dokumenty... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Není @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Přidat dotaz @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Přidat výraz @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Tisk selhal. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Chyba při načítání dokumentu pro tisk. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Došlo k chybě při načítání tiff: @@ -8669,6 +8693,14 @@ Vybrat vše + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Žádný - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Zobrazit - Sort diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index 527a22bfd..c22f03785 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Indstillinger @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logninger @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Gemte visninger @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Åbn dokumenter @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Luk alle @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Administrér @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 er tilgængelig. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klik for at se. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Opdatering tilgængelig @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Vælg alle + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index 5f6f40773..ff14fdc8b 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Einstellungen @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Protokolle @@ -742,11 +742,35 @@ Überprüfen Sie die Protokolldateien für die Anwendung und den E-Mail-Abruf. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Anzeigen + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + Zeilen + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Fehler beim Speichern der Einstellungen. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Dateiaufgaben @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Papierkorb @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Benutzer & Gruppen @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Gespeicherte Ansichten @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Geöffnete Dokumente @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Alle schließen @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Verwaltung @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfiguration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 ist verfügbar. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Zum Anzeigen klicken. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx kann automatisch auf Aktualisierungen überprüfen @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Wie funktioniert das? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Aktualisierung verfügbar @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Seitenleisten-Ansichten aktualisiert @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Fehler beim Aktualisieren der Seitenleisten-Ansichten @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Fehler beim Speichern der Einstellungen für die Aktualisierungsüberprüfung. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Wahr @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falsch @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Suche Dokumente... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Nicht @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Abfrage hinzufügen @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Ausdruck hinzufügen @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Drucken fehlgeschlagen. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Fehler beim Laden des Dokuments für den Druck. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Fehler beim Laden des TIFF: @@ -8669,6 +8693,14 @@ Alles auswählen + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Auswählen: + None @@ -8685,18 +8717,6 @@ Keiner - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Anzeigen - Sort diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf index 4f870b0c4..48c78bc6b 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Ρυθμίσεις @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Αρχεία Καταγραφής @@ -742,11 +742,35 @@ Ελέγξτε τα αρχεία καταγραφής για την εφαρμογή και για τον έλεγχο ηλεκτρονικού ταχυδρομείου. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Παρουσιάστηκε σφάλμα κατά την αποθήκευση των ρυθμίσεων. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Εργασίες Αρχείων @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Κάδος απορριμμάτων @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Χρήστες & Ομάδες @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Τεκμηρίωση @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Αποθηκευμένες προβολές @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Άνοιγμα εγγράφων @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Κλείσιμο όλων @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Διαχείριση @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Αλληλογραφία @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 είναι διαθέσιμο. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Κάνε κλικ για προβολή. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Το Paperless-ngx μπορεί να ελέγξει αυτόματα για ενημερώσεις @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Πώς λειτουργεί; @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Υπάρχει διαθέσιμη ενημέρωση @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Παρουσιάστηκε σφάλμα κατά την αποθήκευση των ρυθμίσεων ελέγχου ενημερώσεων. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Επιλογή όλων + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Κανένα - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index 18437b419..c97136cb5 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Ajustes @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Registros @@ -742,11 +742,35 @@ Revise los archivos de registro de la aplicación y de la comprobación de correo electrónico. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Mostrar + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Se produjo un error al guardar los ajustes. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tareas de archivo @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Papelera @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Usuarios & Grupos @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentación @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Vistas guardadas @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Abrir documentos @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Cerrar todos @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Organizar @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Correo @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administración @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuración @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 está disponible. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Haz clic para ver. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx puede comprobar automáticamente si hay actualizaciones @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 ¿Cómo funciona? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Actualización disponible @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Vistas de la barra lateral actualizadas @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error al actualizar las vistas de la barra lateral @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Se produjo un error al guardar la configuración de comprobación de actualizaciones. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Verdadero @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falso @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Buscar documentos... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 No @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Añadir consulta @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Añadir expresión @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Se ha producido un error al cargar el tif: @@ -8670,6 +8694,14 @@ Seleccionar todo + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Ninguno - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Mostrar - Sort diff --git a/src-ui/src/locale/messages.et_EE.xlf b/src-ui/src/locale/messages.et_EE.xlf index 3c94db17e..3540ec928 100644 --- a/src-ui/src/locale/messages.et_EE.xlf +++ b/src-ui/src/locale/messages.et_EE.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Settings @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logs @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Saved views @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Open documents @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Close all @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Manage @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is available. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Click to view. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Update available @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Select all + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.fa_IR.xlf b/src-ui/src/locale/messages.fa_IR.xlf index e8ba1b4ba..c703ce79b 100644 --- a/src-ui/src/locale/messages.fa_IR.xlf +++ b/src-ui/src/locale/messages.fa_IR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 تنظیمات @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 سیاهه ها @@ -742,11 +742,35 @@ پرونده های ورود به سیستم را برای برنامه و برای بررسی ایمیل مرور کنید. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + نشان دادن + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 هنگام صرفه جویی در تنظیمات ، خطایی روی داد. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 وظایف پرونده @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 زباله @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 مستند سازی @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 نماهای ذخیره شده @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 اسناد باز @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 همه را ببندید @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 مدیریت کردن @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 پست @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 تجویز @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 پیکربندی @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 لوب @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 موجود است @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 برای مشاهده کلیک کنید @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-NGX به طور خودکار می تواند به روزرسانی ها را بررسی کند @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 این چگونه کار می کند؟ @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 به روز رسانی موجود است @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 نمای نوار کناری به روز شده است @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 خطا به روزرسانی نماهای نوار کناری @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 هنگام ذخیره تنظیمات بررسی به روزرسانی ، خطایی روی داد. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 درست @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 دروغ @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 اسناد جستجو ... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 نه @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 اضافه کردن پرس و جو @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 بیان را اضافه کنید @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ همه را انتخاب کنید + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ هیچ کدام - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - نشان دادن - Sort diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index 9ae5fd4fc..9075d6e51 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Asetukset @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Lokit @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Näytä + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Virhe tallennettaessa asetuksia. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tiedostotehtävät @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Käyttäjät & ryhmät @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentaatio @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Tallennetut näkymät @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Avaa asiakirjat @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Sulje kaikki @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Hallitse @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Sähköposti @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Ylläpito @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 on saatavilla. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Näytä klikkaamalla. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx voi tarkistaa päivitykset automaattisesti @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Kuinka tämä toimii? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Päivitys saatavilla @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Virhe tallennettaessa päivitystarkistuksen asetuksia @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Valitse kaikki + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Ei mitään - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Näytä - Sort diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 67882e212..439c2474f 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Paramètres @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Journaux @@ -742,11 +742,35 @@ Consultez les journaux de l'application ainsi que ceux des courriels. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Afficher + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Une erreur est survenue lors de la sauvegarde des paramètres. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tâches sur les fichiers @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Corbeille @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Utilisateurs & Groupes @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Vues enregistrées @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Documents ouverts @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Tout fermer @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Gestion @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Courriel @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 est disponible. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Cliquer pour visualiser. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx peut automatiquement vérifier la disponibilité des mises à jour @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Comment ça fonctionne ? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Mise à jour disponible @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Vues sur la barre latérale mises à jour @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Erreur lors de la mise à jour des vues de la barre latérale @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Une erreur s'est produite lors de l'enregistrement des paramètres de vérification des mises à jour. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Vrai @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Faux @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Rechercher un document... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Non @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Ajouter une requête @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Ajouter une expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Impression échouée. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Erreur lors du chargement du document pour impression. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Une erreur s’est produite lors du chargement du tiff : @@ -8669,6 +8693,14 @@ Sélectionner tout + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Aucun - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Afficher - Sort diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index 5a1a5e67e..06c337485 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 הגדרות @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 יומני רישום @@ -742,11 +742,35 @@ עיין בקובצי הלוג של היישום ולבדיקת דואר אלקטרוני. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + הצג + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 התרחשה שגיאה בעת שמירת ההגדרות: @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 משימות קבצים @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 אשפה @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 משתמשים & קבוצות @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 תיעוד @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 תצוגות שמורות @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 מסמכים פתוחים @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 סגור הכל @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 נהל @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 דואר @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 ניהול @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 הגדרות @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 זמין. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 לחץ להצגה. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx יכול לבדוק אוטומטית אם יש עדכונים @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 איך זה עובד? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 קיים עדכון @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 תצוגת סרגל צד עודכנה @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 שגיאה בעדכון תצוגת סרגל צד @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 ארעה שגיאה בתהליך השמירה. בודק הגדרות @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 אמת @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 שקר @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 חפש מסמכים... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 לא @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 הוסף שאילתה @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 הוסף ביטוי @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 הדפסה נכשלה. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 שגיאה בעת טעינת קובץ tiff: @@ -8670,6 +8694,14 @@ בחר הכל + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ ללא - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - הצג - Sort diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index 3660bf2d5..093b08bee 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Postavke @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Zapisnici @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Došlo je do pogreške prilikom spremanja postavki. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Zadaci datoteke @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentacija @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Spremljeni prikazi @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Otvoreni dokumenti @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zatvori sve @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Upravljaj @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 je dostupno. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klikni za prikaz. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx može automatski provjeriti aktualizaciju @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Kako ovo radi? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Dostupno ažuriranje @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Došlo je do pogreške prilikom spremanja postavki ažuriranja. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Select all + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Ništa - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index f5ba7ad40..c08a74e95 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Beállítások @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Naplók @@ -742,11 +742,35 @@ Ellenőrizd az alkalmazás és az e-mail lekérdezés naplófájljait. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Mutat + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Hiba történt a beállítások mentése közben. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Fájl feladatok @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Lomtár @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Felhasználók & Csoportok @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentáció @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Mentett nézetek @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Dokumentumok megnyitása @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Bezár mindent @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Kezelés @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Adminisztráció @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Beállítások @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 rendelkezésre áll. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Kattintson a megtekintéshez. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 A Paperless-ngx automatikusan ellenőrizni tudja a frissítéseket @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Hogyan működik ez? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Frissítés elérhető @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Oldalsáv nézetek frissítve @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Hiba az oldalsáv nézetek frissítésében @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Hiba történt a frissítési ellenőrzési beállítások mentése közben. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Igaz @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Hamis @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Keresés a doksiban... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Nem @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Lekérdezés hozzáadása @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Kifejezés hozzáadása @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Hiba tiff betöltésekor: @@ -8670,6 +8694,14 @@ Összes kiválasztása + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Nincs - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Mutat - Sort diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf index 1c1b472a1..cf6db149e 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Pengaturan @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Log @@ -742,11 +742,35 @@ Silahkan lihat kembali log file aplikasi dan log email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Tampilkan + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Sebuah kesalahan terjadi saat menyimpan setelan. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tugas File @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Sampah @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentasi @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Tampilan disimpan @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Buka dokumen @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Tutup semua @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Kelola @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Surel @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrasi @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfigurasi @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 telah tersedia. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Ketuk untuk melihat. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx dapat secara otomatis memeriksa pembaruan @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Bagaimana ini dapat bekerja? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Pembaruan tersedia @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Tampilan bilah samping telah diperbarui @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Kesalahan saat memperbarui tampilan sisi @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Terjadi kesalahan saat menyimpan setelan pemeriksaan pembaruan. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Benar @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Salah @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Cari dokumen... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Tidak @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Tambah permintaan @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Tambah ekspresi @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Pencetakan gagal. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error memuat dokumen untuk dicetak. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Terjadi kesalahan saat memuat tiff: @@ -8669,6 +8693,14 @@ Pilih semua + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Tidak ada - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Tampilkan - Sort diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index 9b232f216..ac8918219 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Impostazioni @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Log @@ -742,11 +742,35 @@ Esaminare i file di registro per l'applicazione e per il controllo della posta elettronica. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Mostra + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Si è verificato un errore durante il salvataggio delle impostazioni. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Attività File @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Cestino @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Utenti & gruppi @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentazione @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Viste salvate @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Apri documenti @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Chiudi tutti @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Gestisci @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Amministrazione @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configurazione @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 è disponibile. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Clicca per visualizzare. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx può controllare automaticamente la presenza di aggiornamenti @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Come funziona? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Aggiornamento disponibile @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Viste barra laterale aggiornate @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Errore nell'aggiornamento delle viste della barra laterale @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Si è verificato un errore durante il salvataggio delle impostazioni sugli aggiornamenti. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Vero @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falso @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Ricerca di documenti... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Non @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Aggiungi query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Aggiungi espressione @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Errore durante il caricamento della TIFF: @@ -8669,6 +8693,14 @@ Seleziona tutti + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Niente - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Mostra - Sort diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf index d08e0b24b..3edc2a4a9 100644 --- a/src-ui/src/locale/messages.ja_JP.xlf +++ b/src-ui/src/locale/messages.ja_JP.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 システム設定 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 ログ @@ -742,11 +742,35 @@ アプリケーションとメールチェックのログファイルを確認してください + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + 表示 + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 設定の保存中にエラーが発生しました @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 ファイルタスク @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 ごみ箱 @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 ユーザー & グループ @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 マニュアル @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 保存済みビュー @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 開いているドキュメント @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 すべて閉じる @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 ドキュメント管理 @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 メール @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 システム管理 @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 設定 @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 が利用可能です。 @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 クリックして表示 @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngxは自動的にアップデートを確認できます @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 アップデートの自動確認機能について @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 アップデートがあります。 @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 サイドバービューを更新しました @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 サイドバービューの更新に失敗しました @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 アップデートの確認設定の保存中にエラーが発生しました @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 ドキュメントを検索... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 クエリの追加 @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 式の追加 @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 TIFFの読み込み中にエラーが発生しました: @@ -8669,6 +8693,14 @@ すべて選択 + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ なし - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - 表示 - Sort diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf index 8e280e4c1..cdf1d8696 100644 --- a/src-ui/src/locale/messages.ko_KR.xlf +++ b/src-ui/src/locale/messages.ko_KR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 설정 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 로그 @@ -742,11 +742,35 @@ 애플리케이션 및 이메일 확인을 위한 로그 파일을 검토합니다. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + 표시 + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 설정을 저장하는 중 오류가 발생하였습니다. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 1 @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 휴지통 @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 사용자 & 그룹 @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 문서 @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 저장된 보기 @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 문서 열기 @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 모두 닫기 @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 관리 @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 메일 @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 관리 @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 환경설정 @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 Github @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 사용 가능함 @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 클릭해서 보기. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx는 자동으로 최신 업데이트를 확인할 수 있습니다. @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 어떻게 작동할까요? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 업데이트 가능 @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 사이드바 업데이트 완료 @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 사이드바 업데이트 중 오류가 발생했습니다 @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 설정을 저장하는 중 오류가 발생하였습니다. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 거짓 @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 문서 검색... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 아님 @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 쿼리 추가 @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 표현식 추가 @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 tiff를 로드하는 동안 오류가 발생했습니다: @@ -8670,6 +8694,14 @@ 전체 선택 + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ 없음 - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - 표시 - Sort diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index 6bff23785..0a7d1db8a 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Astellungen @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Protokoller @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Beim Späichere vun den Astellungen ass ee Feeler opgetrueden. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Datei Jobs @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Pabeierkuerf @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Benotzer & Gruppen @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentatioun @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Gespäichert Usiichten @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Oppen Dokumenter @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 All zoumaachen @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Verwalten @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 ass disponibel. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klicke fir unzeweisen. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Update disponibel @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Säiteleeschten-Usiichten aktualiséiert @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Feeler beim Aktualiséieren vun de Säiteleeschten-Usiichten @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Wouer @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falsch @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Dokumenter sichen... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Alles auswielen + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.lt_LT.xlf b/src-ui/src/locale/messages.lt_LT.xlf index a0252b1bc..709f826ab 100644 --- a/src-ui/src/locale/messages.lt_LT.xlf +++ b/src-ui/src/locale/messages.lt_LT.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Nustatymai @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Žurnalai @@ -742,11 +742,35 @@ Peržiūrėkite žurnalo failus apie aplikaciją ir el. pašto patikrą. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Saved views @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Open documents @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Close all @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Manage @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is available. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Click to view. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Update available @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Select all + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf index 00273213b..993cf0b42 100644 --- a/src-ui/src/locale/messages.lv_LV.xlf +++ b/src-ui/src/locale/messages.lv_LV.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Iestatījumi @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Notikumu žurnāli @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentācija @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Saglabātais skats @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Atvērt dokumentus @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Aizvērt visu @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Pārvaldīt @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Pasts @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrācija @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfigurācija @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is available. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Click to view. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Pieejams atjauninājums @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Atzīmēt visu + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Neviens - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.ms_MY.xlf b/src-ui/src/locale/messages.ms_MY.xlf index 0b9d66516..249650d43 100644 --- a/src-ui/src/locale/messages.ms_MY.xlf +++ b/src-ui/src/locale/messages.ms_MY.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Settings @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logs @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Saved views @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Open documents @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Close all @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Manage @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is available. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Click to view. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Update available @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Select all + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index 7b202423e..960fd6a2a 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Instellingen @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logbestanden @@ -742,11 +742,35 @@ Bekijk de logbestanden voor de applicatie en voor het ophalen van e-mails. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Toon + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Er is een fout opgetreden bij het opslaan van de instellingen. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Bestandstaken @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Prullenbak @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Gebruikers & groepen @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Handleiding @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Opgeslagen weergaven @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Open documenten @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Alles sluiten @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Beheren @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Beheer @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuratie @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is beschikbaar. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klik om te bekijken. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx kan automatisch controleren op updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Hoe werkt dit? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Update beschikbaar @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Zijbalkweergaven bijgewerkt @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Fout tijdens bijwerken van zijbalkweergaven @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Er is een fout opgetreden tijdens het opslaan van de instellingen voor updatecontroles. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Waar @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Onwaar @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Zoek documenten... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Niet @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Zoekopdracht toevoegen @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Expressie toevoegen @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Printen mislukt. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Fout bij laden van document voor printen. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Fout bij het laden van tiff: @@ -8669,6 +8693,14 @@ Alles selecteren + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Geen - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Toon - Sort diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index 2b71a796e..4e21185b7 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Innstillinger @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logger @@ -742,11 +742,35 @@ Se gjennom loggfilene for applikasjonen og for sjekk av e-post. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Vis + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Det oppstod en feil under lagring av innstillingene. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Fil oppgaver @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Papirkurv @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Brukere & Grupper @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentasjon @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Lagrede visninger @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Åpne dokumenter @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Lukk alle @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Behandle @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-post @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrasjon @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfigurasjon @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 er tilgjengelig. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klikk for å se. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx kan automatisk sjekke etter oppdateringer @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Hvordan fungerer dette? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Oppdatering er tilgjengelig @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidepanel visning oppdatert @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Feil ved oppdatering av sidepanelet @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Det oppstod en feil under lagring av innstillinger for oppdatering. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Velg alle + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Ingen - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Vis - Sort diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index 2ce0114d4..f91f903c9 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Ustawienia @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Dziennik @@ -742,11 +742,35 @@ Przeglądaj pliki logów dla aplikacji i dla procesu sprawdzania wiadomości e-mail. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Pokaż + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Wystąpił błąd podczas zapisywania ustawień. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Operacje na plikach @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Kosz @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Użytkownicy i Grupy @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentacja @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Zapisane widoki @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Otwarte dokumenty @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zamknij wszystkie @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Zarządzaj @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Poczta @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administracja @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfiguracja @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 jest dostępny. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Kliknij, aby zobaczyć. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx może automatycznie sprawdzać dostępność aktualizacji @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Jak to działa? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Aktualizacja jest dostępna @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Zaktualizowano widoki bocznego panelu @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Błąd podczas aktualizacji widoków bocznego panelu @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Wystąpił błąd podczas zapisywania ustawień sprawdzania aktualizacyj. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Prawda @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Fałsz @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Wyszukaj dokumenty... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Nie @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Dodaj zapytanie @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Dodaj wyrażenie @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Błąd drukowania. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Błąd ładowania dokumentu do wydruku. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Wystąpił błąd podczas ładowania pliku TIFF: @@ -8669,6 +8693,14 @@ Zaznacz wszystko + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Brak - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Pokaż - Sort diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index e76420c67..80157c66f 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Configurações @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logs @@ -742,11 +742,35 @@ Revise os arquivos de log para o aplicativo e para verificação de e-mail. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Mostrar + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Ocorreu um erro ao salvar as configurações. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tarefas de Arquivo @@ -2124,7 +2148,7 @@ src/app/components/admin/tasks/tasks.component.ts 161 - Error dismissing tasks + Erro ao ignorar tarefas Error dismissing task @@ -2132,7 +2156,7 @@ src/app/components/admin/tasks/tasks.component.ts 170 - Error dismissing task + Erro ao ignorar tarefa queued @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Lixeira @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Usuários & Grupos @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentação @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Visualizações @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Abrir documentos @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Fechar todos @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Gerenciar @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administração @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Personalização @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 está disponível. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Clique para visualizar. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx pode verificar atualizações automaticamente @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Como isto funciona? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Atualização disponível @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Visualizações da barra lateral atualizadas @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Erro ao atualizar visualizações da barra lateral @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Ocorreu um erro ao salvar as verificações de atualizações. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Verdadeiro @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falso @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Procura documentos... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Não @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Adicionar consulta @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Adicionar expressão @@ -5216,7 +5240,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 183 - Advanced Filters + Filtros Avançados Add filter @@ -5224,7 +5248,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 190 - Add filter + Adicionar filtro No advanced workflow filters defined. @@ -5232,7 +5256,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 195 - No advanced workflow filters defined. + Nenhum filtro avançado de fluxo de trabalho definido. Complete the custom field query configuration. @@ -5240,7 +5264,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 224,226 - Complete the custom field query configuration. + Conclua a configuração da consulta de campo personalizado. Action type @@ -5620,7 +5644,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 203 - Has any of these tags + Possui alguma destas etiquetas Has all of these tags @@ -5628,7 +5652,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 210 - Has all of these tags + Possui estas etiquetas Does not have these tags @@ -5636,7 +5660,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 217 - Does not have these tags + Não possui estas etiquetas Has correspondent @@ -5652,7 +5676,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 232 - Does not have correspondents + Não possui correspondentes Has document type @@ -5668,7 +5692,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 248 - Does not have document types + Não possui tipos de documento Has storage path @@ -5684,7 +5708,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 264 - Does not have storage paths + Não possui caminhos de armazenamento Matches custom field query @@ -5692,7 +5716,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 272 - Matches custom field query + Corresponde à consulta de campo personalizado Create new workflow @@ -5716,7 +5740,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.html 2,6 - {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}} + {VAR_PLURAL, plural, =1 {Enviar documento por e-mail} other {Email Documentos}} Email address(es) @@ -5768,7 +5792,8 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.html 37 - Some email servers may reject messages with large attachments. + Alguns servidores de e-mail podem rejeitar mensagens com anexos grandes. +Erro ao enviar documentos por e-mail Email sent @@ -5784,7 +5809,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.ts 69 - Error emailing documents + Erro ao enviar documentos por e-mail Error emailing document @@ -5947,7 +5972,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8031,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Impressão falhou. @@ -8014,7 +8039,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Erro ao carregar o documento para impressão. @@ -8022,11 +8047,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Ocorreu um erro ao carregar tiff: @@ -8670,6 +8695,14 @@ Selecionar todos + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8719,6 @@ Nenhum - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Mostrar - Sort @@ -9572,7 +9593,7 @@ src/app/components/manage/mail/mail.component.html 143 - View Processed Mail + Ver e-mails processados No mail rules defined. @@ -9776,7 +9797,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 2 - Processed Mail for + E-mails processados para No processed email messages found. @@ -9784,7 +9805,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 20 - No processed email messages found. + Nenhuma mensagem de e-mail processada encontrada. Received @@ -9792,7 +9813,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 33 - Received + Recebido Processed @@ -9800,7 +9821,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 34 - Processed + Processado Processed mail(s) deleted @@ -9808,7 +9829,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts 72 - Processed mail(s) deleted + E-mail(s) processado(s) excluído(s) Filter by: diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index 836d331f7..68f13e7fb 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Configurações @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Registos @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Ocorreu um erro ao gravar as configurações. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tarefas de Ficheiro @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Reciclagem @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Utilizadores e Grupos @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentação @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Visualizações @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Abrir documentos @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Fechar todos @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Gerir @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Email @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administração @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Customizações @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 Github @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 está disponível. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Clique para ver. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 O Paperless-ngx pode verificar automaticamente por atualizações @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Como é que isto funciona? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Atualização disponível @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Visualizações da barra lateral atualizadas @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Erro ao atualizar visualizações da barra lateral @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Verdadeiro @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falso @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Não @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Adicionar expressão @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Selecionar todos + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Nenhum - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index b3a2f5558..8f695339e 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Setări @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Jurnale @@ -742,11 +742,35 @@ Uitați-vă la fișierele de log-uri pentru aplicație si verificarea email-ului. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Arată + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Utilizatori & Grupuri @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentație @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Vizualizări @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Deschide documente @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Închide tot @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Administrează @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrare @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 este disponibilă. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Click pentru a vizualiza. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Sistemul poate verifica automat actualizările @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Cum funcţionează? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Actualizare disponibilă @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Vizualizări bară laterală actualizate @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Eroare la actualizarea vizualizărilor barei laterale @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Selectează tot + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Arată - Sort diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index a5c432a9d..c3df92c26 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Настройки @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Логи @@ -742,11 +742,35 @@ Просмотрите файлы журналов для приложения и для проверки электронной почты. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Показать + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Произошла ошибка при сохранении настроек. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Файловые задачи @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Корзина @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Пользователи и группы @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Документация @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Представления @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Открыть документы @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Закрыть всё @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Управление @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Почта @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Администрирование @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Конфигурация @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 доступно. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Нажмите для просмотра. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx может автоматически проверять наличие обновлений @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Как это работает? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Доступно обновление @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Обновлена боковая панель @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Ошибка при обновлении боковой панели @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Произошла ошибка при сохранении настроек проверки обновлений. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Верно @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Ложное @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Поиск документов... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Не @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Добавить запрос @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Добавить выражение @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -7030,7 +7054,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 257 - WebSocket Connection + Подключение WebSocket OK @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Произошла ошибка при загрузке tiff: @@ -8669,6 +8693,14 @@ Выбрать всё + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Отсутствует - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Показать - Sort @@ -9807,7 +9827,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts 72 - Processed mail(s) deleted + Обработанная почта удалена Filter by: diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf index cc1582234..ffd1b6eec 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Nastavenia @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logy @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Pri ukladaní nastavení sa vyskytla chyba. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Súborové úlohy @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Kôš @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Používatelia a skupiny @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentácia @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Uložené zobrazenia @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Otvorené dokumenty @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zavrieť všetky @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Spravovať @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrácia @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfigurácia @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 je dostupný. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klikni pre zobrazenie. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx môže automaticky kontrolovať aktualizácie @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Ako to funguje? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Aktualizácia je k dispozícii @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Pri ukladaní nastavení vyhľadávania aktualizácií sa vyskytla chyba. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Vybrať všetko + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Žiadny - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index de3b6838a..c1ece21d0 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Nastavitve @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Dnevniki @@ -742,11 +742,35 @@ Preglejte dnevniške datoteke za preverjanje aplikacije in e-pošte. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Prikaži + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Prišlo je do napake ob shranjevanju nastavitev. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Datotečne naloge @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Smetnjak @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Uporabniki & Skupine @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentacija @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Shranjeni pogledi @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Odpri dokumente @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zapri vse @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Upravljaj @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Pošta @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administracija @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfiguracija @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 je na voljo. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klikni za ogled. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx lahko samodejno preveri za posodobitve @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Kako to deluje? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Posodobitev na voljo @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Posodobljeni pogledi v stranski vrstici @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Napaka pri posodabljanju pogledov v stranski vrstici @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Prišlo je do napake ob shranjevanju nastavitev za pregled posodobitev. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Resnično @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Neresnično @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Išči dokumente ... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Ne @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Dodaj poizvedbo @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Dodaj izraz @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Tiskanje ni uspelo. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Napaka pri nalaganju dokumenta za tiskanje. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Pri nalaganju datoteke tiff je prišlo do napake: @@ -8670,6 +8694,14 @@ Izberite vse + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Brez - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Prikaži - Sort diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index 4ccfd9626..7b27e72ed 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Podešavanja @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logovi @@ -742,11 +742,35 @@ Pregledajte logove za aplikaciju i za proveru imejla. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Prikaži + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Došlo je do greške prilikom čuvanja podešavanja. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Obrada dokumenata @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Otpad @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Korisnici i Grupe @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentacija @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Sačuvani pregledi @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Otvorena dokumenta @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zatvori svе @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Upravljanje @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Imejl @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administracija @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfiguracija @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 je dostupno. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klik za prеglеd. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx može automatski da proveri da li postoje ažuriranja @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Kako ovo radi? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Dostupno jе ažuriranjе @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Prikazi bočne trake su ažurirani @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Greška pri ažuriranju prikaza bočne trake @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Došlo je do greške prilikom čuvanja podešavanja. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Tačno @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Netačno @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Pretraži dokumenta... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Nije @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Dodaj upit @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Dodaj izraz @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Štampanje nije uspelo. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Greška pri učitavanju dokumenta za štampanje. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Došlo je do greške prilikom učitavanja TIFF-a: @@ -8671,6 +8695,14 @@ Odaberi sve + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8687,18 +8719,6 @@ Nijedan - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Prikaži - Sort diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index 5060b58d9..d6a80d948 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Inställningar @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Loggar @@ -742,11 +742,35 @@ Granska loggfilerna för programmet och för e-postkontroll. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Visa + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Ett fel inträffade när inställningarna skulle sparas. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Filuppgifter @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Papperskorg @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Användare & Grupper @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Sparade vyer @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Öppna dokument @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Stäng alla @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Hantera @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-post @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfiguration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 är tillgänglig. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klicka för att visa. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx kan automatiskt söka efter uppdateringar @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Hur fungerar detta? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Uppdatering tillgänglig @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Ett fel uppstod när uppdateringskontrollen skulle sparas. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Sant @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falskt @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Ej @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Välj alla + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Ingen - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Visa - Sort diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf index f6ce0c918..e1d2f53c6 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 การตั้งค่า @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logs @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 รายการงาน @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 ผู้ใช้งาน & กลุ่ม @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 เอกสารอ้างอิง @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 การค้นที่เก็บไว้ @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 เปิดเอกสาร @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 ปิดทั้งหมด @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 จัดการ @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 เมล @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 การจัดการระบบ @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 ใช้งานได้ @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 คลิกเพื่อดู @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 ระบบนี้ทำงานยังไง? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 มีการอัพเดท @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ เลือกทั้งหมด + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ ไม่มี - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index f9e4d3011..784b4fc79 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Ayarlar @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Günlükler @@ -742,11 +742,35 @@ Uygulama ve e-posta kontrolü için günlük dosyalarını inceleyin. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Ayarlar kaydedilirken bir hata oluştu. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Dosya Görevleri @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Çöp kutusu @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Kullanıcılar & Gruplar @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokümantasyon @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Kaydedilen görünümler @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Belgeleri aç @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Tümünü kapat @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Yönet @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Posta @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Yönetici @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Yapılandırma @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 Github @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 kullanılabilir. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Görüntülemek için tıklayın. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx güncellemeleri otomatik olarak kontrol edebilir @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Bu nasıl çalışıyor? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Güncelleme mevcut @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Kenar çubuğu görünümleri güncellendi @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Kenar çubuğu görünümlerini güncellerken hata oluştu @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Güncelleme denetimi ayarları kaydedilirken bir hata oluştu. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Doğru @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Yanlış @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Belgelerde ara... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Değil @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Sorgu Ekle @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 İfade Ekle @@ -5949,7 +5973,7 @@ tüm krite src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8008,7 +8032,7 @@ tüm krite Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8016,7 +8040,7 @@ tüm krite Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8024,11 +8048,11 @@ tüm krite An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8672,6 +8696,14 @@ tüm krite Tümünü seç + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8688,18 +8720,6 @@ tüm krite Yok - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf index 7c538361e..e6d8452d4 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Налаштування @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Логи @@ -742,11 +742,35 @@ Переглянути файли журналу для програми та перевірки пошти. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Показувати + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Сталися помилки при збереженні налаштувань. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Обробка файлів @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Смітник @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Користувачі та групи @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Документація @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Збережені представлення @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Відкрити документи @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Закрити все @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Керування @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Ел. пошта @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Адміністрування @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Налаштування @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 є доступним для оновлення. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Натисніть для перегляду. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx може автоматично перевіряти наявність оновлень @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Як це працює? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Доступне оновлення @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Представлення бічної панелі оновлено @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Помилка оновлення представлень бічної панелі @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Сталася помилка при збереженні налаштувань для перевірки оновлень. @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Вірно @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Невірно @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Шукати в документації... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Не @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Додати запит @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Додати вираз @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8670,6 +8694,14 @@ Вибрати всі + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Немає - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Показувати - Sort diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf index a0bc894e3..3dd3d0a02 100644 --- a/src-ui/src/locale/messages.vi_VN.xlf +++ b/src-ui/src/locale/messages.vi_VN.xlf @@ -410,11 +410,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -432,11 +432,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -482,11 +482,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Cài đặt @@ -862,11 +862,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Nhật ký @@ -882,11 +882,37 @@ Xem lại log của ứng dụng và kiểm tra email. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + + Trình diễn + + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -900,11 +926,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1303,11 +1329,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -2007,7 +2033,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Đã xảy ra lỗi khi lưu các thiết lập. @@ -2021,11 +2047,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tác vụ tệp @@ -2547,11 +2573,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Thùng rác @@ -2988,11 +3014,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Người dùng và Nhóm @@ -3415,11 +3441,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Tài liệu tham khảo @@ -3429,11 +3455,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Lượt xem đã lưu @@ -3443,7 +3469,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Mở tài liệu @@ -3453,11 +3479,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Đóng tất cả @@ -3467,7 +3493,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Quản lý @@ -3477,11 +3503,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3495,11 +3521,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3533,11 +3559,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3551,11 +3577,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3569,11 +3595,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3591,11 +3617,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3609,11 +3635,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Thư @@ -3623,7 +3649,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Quản trị @@ -3633,11 +3659,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Cấu hình @@ -3647,7 +3673,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3657,7 +3683,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 đã có sẵn. @@ -3667,7 +3693,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Nhấp để xem. @@ -3677,7 +3703,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx có thể tự động check update @@ -3687,7 +3713,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Cách thức hoạt động? @@ -3697,7 +3723,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Có bản cập nhật @@ -3707,7 +3733,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Đã cập nhật các views sidebar @@ -3717,7 +3743,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Lỗi cập nhật các views sidebar @@ -3727,7 +3753,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Đã có lỗi khi lưu các thiết lập kiểm tra cập nhật. @@ -4291,11 +4317,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 ĐÚNG VẬY @@ -4309,11 +4335,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 SAI @@ -4323,11 +4349,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Tài liệu tìm kiếm ... @@ -4337,7 +4363,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -4351,7 +4377,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -4381,7 +4407,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Không @@ -4391,7 +4417,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Thêm truy vấn @@ -4401,7 +4427,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Thêm biểu thức @@ -6988,7 +7014,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -9450,7 +9476,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -9458,7 +9484,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -9466,11 +9492,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Đã xảy ra lỗi tải TIFF: @@ -10246,6 +10272,14 @@ Chọn tất cả + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -10262,20 +10296,6 @@ Không có - - - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - - Trình diễn diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index 072798527..5bf7bef8e 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 设置 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 日志 @@ -742,11 +742,35 @@ 检查应用程序和电子邮件检查日志文件。 + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + 显示列 + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 保存设置时发生错误。 @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 文件任务 @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 回收站 @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 用户 & 组 @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 帮助文档 @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 保存视图 @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 打开文档 @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 全部关闭 @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 管理 @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 邮件 @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 管理 @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 配置 @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 可用 @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 点击查看 @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx 可以自动检查更新 @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 这是如何运作的? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 有可用更新 @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 侧边栏视图已更新 @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 更新侧边栏视图时发生错误 @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 保存更新检查设置时发生错误。 @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 搜索文档... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 添加查询 @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 添加表达式 @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 打印失败。 @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 加载打印文档时出错。 @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 加载内容时发生错误: @@ -8669,6 +8693,14 @@ 全选 + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - 显示列 - Sort diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index 89cc5bb01..2e1c2feca 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 設定 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 事件記錄 @@ -742,11 +742,35 @@ 檢閱應用程式和電子郵件檢查的事件紀錄。 + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + 顯示 + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 儲存設定時發生錯誤。 @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 檔案任務 @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 垃圾桶 @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 使用者與群組 @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 說明文件 @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 已儲存的檢視表 @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 開啟文件 @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 關閉全部 @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 文件管理 @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 郵件 @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 系統管理 @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 系統配置 @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 可供更新。 @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 點擊以顯示。 @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx 可以自動檢查更新 @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 這是怎麼運作的? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 有可用更新 @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 側邊欄顯示方式已更新 @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 更新側邊欄顯示方式時發生錯誤 @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 儲存檢查更新設定時發生錯誤。 @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 搜尋文件⋯ @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 不是 @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 新增查詢 @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 新增表達式 @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 列印失敗。 @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 載入列印文件時發生錯誤 @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 讀取 TIFF 檔時發生錯誤: @@ -8670,6 +8694,14 @@ 選取全部 + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - 顯示 - Sort diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index f452426e4..8b5a81ae7 100644 --- a/src/locale/de_DE/LC_MESSAGES/django.po +++ b/src/locale/de_DE/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"PO-Revision-Date: 2025-11-03 17:49\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" diff --git a/src/locale/pt_BR/LC_MESSAGES/django.po b/src/locale/pt_BR/LC_MESSAGES/django.po index 90d431380..9c071f8d6 100644 --- a/src/locale/pt_BR/LC_MESSAGES/django.po +++ b/src/locale/pt_BR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"PO-Revision-Date: 2025-10-30 23:37\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -47,7 +47,7 @@ msgstr "{name!r} não é um campo personalizado válido." #: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." -msgstr "{data_type} não suporta a consulta expr {expr!r}." +msgstr "{data_type} Não suporta a consulta expr {expr!r}." #: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." @@ -450,7 +450,7 @@ msgstr "pesquisa de texto completo" #: documents/models.py:526 msgid "more like this" -msgstr "Mais como este" +msgstr "mais como este" #: documents/models.py:527 msgid "has tags in" @@ -859,11 +859,11 @@ msgstr "Possui estas etiquetas" #: documents/models.py:1072 msgid "has all of these tag(s)" -msgstr "" +msgstr "possui toda(s) esta(s) etiqueta(s)" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "" +msgstr "não possui esta(s) etiqueta(s)" #: documents/models.py:1087 msgid "has this document type" @@ -871,7 +871,7 @@ msgstr "Possui este tipo de documento" #: documents/models.py:1094 msgid "does not have these document type(s)" -msgstr "" +msgstr "não possui este(s) tipo(s) de documento" #: documents/models.py:1102 msgid "has this correspondent" @@ -879,7 +879,7 @@ msgstr "Possui este correspondente" #: documents/models.py:1109 msgid "does not have these correspondent(s)" -msgstr "" +msgstr "não possui este(s) correspondente(s)" #: documents/models.py:1117 msgid "has this storage path" @@ -887,15 +887,15 @@ msgstr "possui este caminho de armazenamento" #: documents/models.py:1124 msgid "does not have these storage path(s)" -msgstr "" +msgstr "não possui este(s) caminho(s) de armazenamento" #: documents/models.py:1128 msgid "filter custom field query" -msgstr "" +msgstr "Filtrar consulta de campo personalizado" #: documents/models.py:1131 msgid "JSON-encoded custom field query expression." -msgstr "" +msgstr "Expressão de consulta de campo personalizado codificada em JSON." #: documents/models.py:1135 msgid "schedule offset days" @@ -1270,7 +1270,7 @@ msgstr "Olá de %(site_name)s!" #, python-format msgid "Thank you for using %(site_name)s!\n" "%(site_domain)s" -msgstr "Obrigado por usar %(site_name)s!\n" +msgstr "Obrigado por usar %(site_name)s!\n" "%(site_domain)s" #: documents/templates/account/login.html:5 @@ -1313,7 +1313,7 @@ msgstr "ou conecte-se com" #: documents/templates/account/password_reset.html:5 msgid "Paperless-ngx reset password request" -msgstr "Redefinição de senha Paperless-ngx" +msgstr "Solicitação de redefinição de senha Paperless-ngx" #: documents/templates/account/password_reset.html:9 msgid "Enter your email address below, and we'll email instructions for setting a new one." diff --git a/src/locale/ru_RU/LC_MESSAGES/django.po b/src/locale/ru_RU/LC_MESSAGES/django.po index dc90bc519..772203662 100644 --- a/src/locale/ru_RU/LC_MESSAGES/django.po +++ b/src/locale/ru_RU/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"PO-Revision-Date: 2025-11-01 20:24\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -758,7 +758,7 @@ msgstr "Выбрать" #: documents/models.py:795 msgid "Long Text" -msgstr "" +msgstr "Длинный текст" #: documents/models.py:807 msgid "data type" diff --git a/src/locale/th_TH/LC_MESSAGES/django.po b/src/locale/th_TH/LC_MESSAGES/django.po index 921a97ab7..a209932dc 100644 --- a/src/locale/th_TH/LC_MESSAGES/django.po +++ b/src/locale/th_TH/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"PO-Revision-Date: 2025-10-30 23:37\n" "Last-Translator: \n" "Language-Team: Thai\n" "Language: th_TH\n" @@ -942,7 +942,7 @@ msgstr "" #: documents/models.py:1187 msgid "email subject" -msgstr "" +msgstr "หัวเรื่องของอีเมล" #: documents/models.py:1191 msgid "The subject of the email, can include some placeholders, see documentation." @@ -950,7 +950,7 @@ msgstr "" #: documents/models.py:1197 msgid "email body" -msgstr "" +msgstr "เนื้อหาอีเมล" #: documents/models.py:1200 msgid "The body (message) of the email, can include some placeholders, see documentation." @@ -958,7 +958,7 @@ msgstr "" #: documents/models.py:1206 msgid "emails to" -msgstr "" +msgstr "อีเมล์ถึง" #: documents/models.py:1209 msgid "The destination email addresses, comma separated." From 810bf3d612e73ab0731f21ab3c8671c5b2fd9b43 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 3 Nov 2025 15:54:43 -0800 Subject: [PATCH 048/133] Fix: fix log loading spinner display condition --- src-ui/src/app/components/admin/logs/logs.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/app/components/admin/logs/logs.component.html b/src-ui/src/app/components/admin/logs/logs.component.html index bdc80583f..70dcda86d 100644 --- a/src-ui/src/app/components/admin/logs/logs.component.html +++ b/src-ui/src/app/components/admin/logs/logs.component.html @@ -47,7 +47,7 @@ itemSize="20" class="bg-dark p-3 text-light font-monospace log-container" #logContainer> - @if (loading && logFiles.length) { + @if (loading && !logFiles.length) {
Loading... From a0172a27540bcfd04400b9cbce0a4e20a2c0a041 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:01:45 -0800 Subject: [PATCH 049/133] Chore: fix test error --- .../src/app/components/common/input/tags/tags.component.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src-ui/src/app/components/common/input/tags/tags.component.spec.ts b/src-ui/src/app/components/common/input/tags/tags.component.spec.ts index 84f1c4817..ae543075e 100644 --- a/src-ui/src/app/components/common/input/tags/tags.component.spec.ts +++ b/src-ui/src/app/components/common/input/tags/tags.component.spec.ts @@ -106,6 +106,7 @@ describe('TagsComponent', () => { modalService = TestBed.inject(NgbModal) settingsService = TestBed.inject(SettingsService) + settingsService.currentUser = { id: 1 } fixture = TestBed.createComponent(TagsComponent) fixture.debugElement.injector.get(NG_VALUE_ACCESSOR) component = fixture.componentInstance From fe3c424d7d309d40c47314e745b393a6d010d0fb Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:02:09 -0800 Subject: [PATCH 050/133] Bump version to 2.19.4 --- pyproject.toml | 2 +- src-ui/package.json | 2 +- src-ui/src/environments/environment.prod.ts | 2 +- src/paperless/version.py | 2 +- uv.lock | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6be06907c..2b7685ac6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "paperless-ngx" -version = "2.19.3" +version = "2.19.4" description = "A community-supported supercharged document management system: scan, index and archive all your physical documents" readme = "README.md" requires-python = ">=3.10" diff --git a/src-ui/package.json b/src-ui/package.json index 2589a048c..e49d4289b 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -1,6 +1,6 @@ { "name": "paperless-ngx-ui", - "version": "2.19.3", + "version": "2.19.4", "scripts": { "preinstall": "npx only-allow pnpm", "ng": "ng", diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index 251fe1899..923e6be38 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -6,7 +6,7 @@ export const environment = { apiVersion: '9', // match src/paperless/settings.py appTitle: 'Paperless-ngx', tag: 'prod', - version: '2.19.3', + version: '2.19.4', webSocketHost: window.location.host, webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:', webSocketBaseUrl: base_url.pathname + 'ws/', diff --git a/src/paperless/version.py b/src/paperless/version.py index e522208a2..cf87791f6 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1,6 +1,6 @@ from typing import Final -__version__: Final[tuple[int, int, int]] = (2, 19, 3) +__version__: Final[tuple[int, int, int]] = (2, 19, 4) # Version string like X.Y.Z __full_version_str__: Final[str] = ".".join(map(str, __version__)) # Version string like X.Y diff --git a/uv.lock b/uv.lock index 84ff2e5a1..2157b31aa 100644 --- a/uv.lock +++ b/uv.lock @@ -2115,7 +2115,7 @@ wheels = [ [[package]] name = "paperless-ngx" -version = "2.19.3" +version = "2.19.4" source = { virtual = "." } dependencies = [ { name = "babel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, From 74f72e417d5e37033e7122460650496e8b02dd75 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 17:39:28 -0800 Subject: [PATCH 051/133] Documentation: Add v2.19.4 changelog (#11285) * Changelog v2.19.4 - GHA * Update changelog for paperless-ngx 2.19.4 Reorganize changelog to include performance enhancements. --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- docs/changelog.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/docs/changelog.md b/docs/changelog.md index 296d30f7a..7f51cb04e 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,41 @@ # Changelog +## paperless-ngx 2.19.4 + +### Bug Fixes + +- Fix: use original_file when attaching docs to workflow emails with added trigger [@shamoon](https://github.com/shamoon) ([#11266](https://github.com/paperless-ngx/paperless-ngx/pull/11266)) +- Fix: mark 'Select' button in doc list for translation [@shamoon](https://github.com/shamoon) ([#11278](https://github.com/paperless-ngx/paperless-ngx/pull/11278)) +- Fix: respect fields parameter for created field [@shamoon](https://github.com/shamoon) ([#11251](https://github.com/paperless-ngx/paperless-ngx/pull/11251)) +- Fix: improve legibility of processed mail error popover in light mode [@shamoon](https://github.com/shamoon) ([#11258](https://github.com/paperless-ngx/paperless-ngx/pull/11258)) +- Fixhancement: truncate large logs, improve auto-scroll [@shamoon](https://github.com/shamoon) ([#11239](https://github.com/paperless-ngx/paperless-ngx/pull/11239)) +- Chore: add max-height and overflow to processedmail error popover [@shamoon](https://github.com/shamoon) ([#11252](https://github.com/paperless-ngx/paperless-ngx/pull/11252)) +- Fix: delay iframe DOM removal, handle onafterprint error for print in FF [@shamoon](https://github.com/shamoon) ([#11237](https://github.com/paperless-ngx/paperless-ngx/pull/11237)) +- Fix: de-deduplicate children in tag list when filtering [@shamoon](https://github.com/shamoon) ([#11229](https://github.com/paperless-ngx/paperless-ngx/pull/11229)) + +### Performance + +- Performance: re-enable virtual scroll, bump ng-select [@shamoon](https://github.com/shamoon) ([#11279](https://github.com/paperless-ngx/paperless-ngx/pull/11279)) +- Performance: use virtual scroll container and log level parsing for logs view [@MickLesk](https://github.com/MickLesk) ([#11233](https://github.com/paperless-ngx/paperless-ngx/pull/11233)) + +### All App Changes + +
+11 changes + +- Performance: re-enable virtual scroll, bump ng-select [@shamoon](https://github.com/shamoon) ([#11279](https://github.com/paperless-ngx/paperless-ngx/pull/11279)) +- Fix: use original_file when attaching docs to workflow emails with added trigger [@shamoon](https://github.com/shamoon) ([#11266](https://github.com/paperless-ngx/paperless-ngx/pull/11266)) +- Fix: mark 'Select' button in doc list for translation [@shamoon](https://github.com/shamoon) ([#11278](https://github.com/paperless-ngx/paperless-ngx/pull/11278)) +- Fix: respect fields parameter for created field [@shamoon](https://github.com/shamoon) ([#11251](https://github.com/paperless-ngx/paperless-ngx/pull/11251)) +- Fix: improve legibility of processed mail error popover in light mode [@shamoon](https://github.com/shamoon) ([#11258](https://github.com/paperless-ngx/paperless-ngx/pull/11258)) +- Fixhancement: truncate large logs, improve auto-scroll [@shamoon](https://github.com/shamoon) ([#11239](https://github.com/paperless-ngx/paperless-ngx/pull/11239)) +- Chore: add max-height and overflow to processedmail error popover [@shamoon](https://github.com/shamoon) ([#11252](https://github.com/paperless-ngx/paperless-ngx/pull/11252)) +- Fix: delay iframe DOM removal, handle onafterprint error for print in FF [@shamoon](https://github.com/shamoon) ([#11237](https://github.com/paperless-ngx/paperless-ngx/pull/11237)) +- Performance: use virtual scroll container and log level parsing for logs view [@MickLesk](https://github.com/MickLesk) ([#11233](https://github.com/paperless-ngx/paperless-ngx/pull/11233)) +- Chore: cache Github version check for 15 minutes [@shamoon](https://github.com/shamoon) ([#11235](https://github.com/paperless-ngx/paperless-ngx/pull/11235)) +- Fix: de-deduplicate children in tag list when filtering [@shamoon](https://github.com/shamoon) ([#11229](https://github.com/paperless-ngx/paperless-ngx/pull/11229)) +
+ ## paperless-ngx 2.19.3 ### Bug Fixes From 85027dbffd8c6003b172c43b87c8ebf3b54ef1e8 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 4 Nov 2025 12:40:05 -0800 Subject: [PATCH 052/133] Fix: ensure custom field query propagation, change detection (#11291) --- ...om-fields-query-dropdown.component.spec.ts | 8 ++++ .../custom-fields-query-dropdown.component.ts | 42 +++++++++++++++---- .../utils/custom-field-query-element.spec.ts | 32 ++++++++++++-- .../app/utils/custom-field-query-element.ts | 19 ++++++++- 4 files changed, 86 insertions(+), 15 deletions(-) diff --git a/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.spec.ts b/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.spec.ts index 4dcbceb13..69f89f74e 100644 --- a/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.spec.ts +++ b/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.spec.ts @@ -354,5 +354,13 @@ describe('CustomFieldsQueryDropdownComponent', () => { model.removeElement(atom) expect(completeSpy).toHaveBeenCalled() }) + + it('should subscribe to existing elements when queries are assigned', () => { + const expression = new CustomFieldQueryExpression() + const nextSpy = jest.spyOn(model.changed, 'next') + model.queries = [expression] + expression.changed.next(expression) + expect(nextSpy).toHaveBeenCalledWith(model) + }) }) }) diff --git a/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.ts b/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.ts index fc4e8ef19..7d8109c53 100644 --- a/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.ts +++ b/src-ui/src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.ts @@ -17,7 +17,7 @@ import { } from '@ng-bootstrap/ng-bootstrap' import { NgSelectComponent, NgSelectModule } from '@ng-select/ng-select' import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons' -import { first, Subject, takeUntil } from 'rxjs' +import { first, Subject, Subscription, takeUntil } from 'rxjs' import { CustomField, CustomFieldDataType } from 'src/app/data/custom-field' import { CUSTOM_FIELD_QUERY_MAX_ATOMS, @@ -41,10 +41,27 @@ import { ClearableBadgeComponent } from '../clearable-badge/clearable-badge.comp import { DocumentLinkComponent } from '../input/document-link/document-link.component' export class CustomFieldQueriesModel { - public queries: CustomFieldQueryElement[] = [] + private _queries: CustomFieldQueryElement[] = [] + private rootSubscriptions: Subscription[] = [] public readonly changed = new Subject() + public get queries(): CustomFieldQueryElement[] { + return this._queries + } + + public set queries(value: CustomFieldQueryElement[]) { + this.teardownRootSubscriptions() + this._queries = value ?? [] + for (const element of this._queries) { + this.rootSubscriptions.push( + element.changed.subscribe(() => { + this.changed.next(this) + }) + ) + } + } + public clear(fireEvent = true) { this.queries = [] if (fireEvent) { @@ -107,14 +124,14 @@ export class CustomFieldQueriesModel { public addExpression( expression: CustomFieldQueryExpression = new CustomFieldQueryExpression() ) { - if (this.queries.length > 0) { - ;( - (this.queries[0] as CustomFieldQueryExpression) - .value as CustomFieldQueryElement[] - ).push(expression) - } else { - this.queries.push(expression) + if (this.queries.length === 0) { + this.queries = [expression] + return } + ;( + (this.queries[0] as CustomFieldQueryExpression) + .value as CustomFieldQueryElement[] + ).push(expression) expression.changed.subscribe(() => { this.changed.next(this) }) @@ -166,6 +183,13 @@ export class CustomFieldQueriesModel { this.changed.next(this) } } + + private teardownRootSubscriptions() { + for (const subscription of this.rootSubscriptions) { + subscription.unsubscribe() + } + this.rootSubscriptions = [] + } } @Component({ diff --git a/src-ui/src/app/utils/custom-field-query-element.spec.ts b/src-ui/src/app/utils/custom-field-query-element.spec.ts index 411dcd6f9..e01af7fd4 100644 --- a/src-ui/src/app/utils/custom-field-query-element.spec.ts +++ b/src-ui/src/app/utils/custom-field-query-element.spec.ts @@ -1,4 +1,3 @@ -import { fakeAsync, tick } from '@angular/core/testing' import { CustomFieldQueryElementType, CustomFieldQueryLogicalOperator, @@ -111,13 +110,38 @@ describe('CustomFieldQueryAtom', () => { expect(atom.serialize()).toEqual([1, 'operator', 'value']) }) - it('should emit changed on value change after debounce', fakeAsync(() => { + it('should emit changed on value change immediately', () => { const atom = new CustomFieldQueryAtom() const changeSpy = jest.spyOn(atom.changed, 'next') atom.value = 'new value' - tick(1000) expect(changeSpy).toHaveBeenCalled() - })) + }) + + it('should ignore duplicate array emissions', () => { + const atom = new CustomFieldQueryAtom() + atom.operator = CustomFieldQueryOperator.In + const changeSpy = jest.fn() + atom.changed.subscribe(changeSpy) + + atom.value = [1, 2] + expect(changeSpy).toHaveBeenCalledTimes(1) + + changeSpy.mockClear() + atom.value = [1, 2] + expect(changeSpy).not.toHaveBeenCalled() + }) + + it('should emit when array values differ while length matches', () => { + const atom = new CustomFieldQueryAtom() + atom.operator = CustomFieldQueryOperator.In + const changeSpy = jest.fn() + atom.changed.subscribe(changeSpy) + + atom.value = [1, 2] + changeSpy.mockClear() + atom.value = [1, 3] + expect(changeSpy).toHaveBeenCalledTimes(1) + }) }) describe('CustomFieldQueryExpression', () => { diff --git a/src-ui/src/app/utils/custom-field-query-element.ts b/src-ui/src/app/utils/custom-field-query-element.ts index 3438f2c85..34891641a 100644 --- a/src-ui/src/app/utils/custom-field-query-element.ts +++ b/src-ui/src/app/utils/custom-field-query-element.ts @@ -1,4 +1,4 @@ -import { Subject, debounceTime, distinctUntilChanged } from 'rxjs' +import { Subject, distinctUntilChanged } from 'rxjs' import { v4 as uuidv4 } from 'uuid' import { CUSTOM_FIELD_QUERY_VALUE_TYPES_BY_OPERATOR, @@ -110,7 +110,22 @@ export class CustomFieldQueryAtom extends CustomFieldQueryElement { protected override connectValueModelChanged(): void { this.valueModelChanged - .pipe(debounceTime(1000), distinctUntilChanged()) + .pipe( + distinctUntilChanged((previous, current) => { + if (Array.isArray(previous) && Array.isArray(current)) { + if (previous.length !== current.length) { + return false + } + for (let i = 0; i < previous.length; i++) { + if (previous[i] !== current[i]) { + return false + } + } + return true + } + return previous === current + }) + ) .subscribe(() => { this.changed.next(this) }) From 95736eebc445050a52612541ad4ee8067eb5b9b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 20:12:56 -0800 Subject: [PATCH 053/133] docker(deps): Bump astral-sh/uv (#11283) Bumps [astral-sh/uv](https://github.com/astral-sh/uv) from 0.9.4-python3.12-bookworm-slim to 0.9.7-python3.12-bookworm-slim. - [Release notes](https://github.com/astral-sh/uv/releases) - [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/uv/compare/0.9.4...0.9.7) --- updated-dependencies: - dependency-name: astral-sh/uv dependency-version: 0.9.7-python3.12-bookworm-slim dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aeab828b9..bf352b521 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN set -eux \ # Purpose: Installs s6-overlay and rootfs # Comments: # - Don't leave anything extra in here either -FROM ghcr.io/astral-sh/uv:0.9.4-python3.12-bookworm-slim AS s6-overlay-base +FROM ghcr.io/astral-sh/uv:0.9.7-python3.12-bookworm-slim AS s6-overlay-base WORKDIR /usr/src/s6 From 3fda648f370b47d9304cdcbc94a4179f04a40626 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 19:36:26 +0000 Subject: [PATCH 054/133] New Crowdin translations by GitHub Action (#11288) --- src-ui/src/locale/messages.ca_ES.xlf | 4 ++-- src-ui/src/locale/messages.fr_FR.xlf | 4 ++-- src-ui/src/locale/messages.zh_TW.xlf | 2 +- src/locale/ca_ES/LC_MESSAGES/django.po | 2 +- src/locale/de_DE/LC_MESSAGES/django.po | 2 +- src/locale/fr_FR/LC_MESSAGES/django.po | 2 +- src/locale/zh_TW/LC_MESSAGES/django.po | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index ee2cc3388..1728f9e3c 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -764,7 +764,7 @@ src/app/components/admin/logs/logs.component.html 17 - lines + línies Auto refresh @@ -8700,7 +8700,7 @@ src/app/components/document-list/document-list.component.html 18 - Select: + Selecciona: None diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 439c2474f..747698b7d 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -764,7 +764,7 @@ src/app/components/admin/logs/logs.component.html 17 - lines + lignes Auto refresh @@ -8699,7 +8699,7 @@ src/app/components/document-list/document-list.component.html 18 - Select: + Sélectionner : None diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index 2e1c2feca..0d41908f4 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -8700,7 +8700,7 @@ src/app/components/document-list/document-list.component.html 18 - Select: + 選取: None diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po index 3e4c364c5..b74843ada 100644 --- a/src/locale/ca_ES/LC_MESSAGES/django.po +++ b/src/locale/ca_ES/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"PO-Revision-Date: 2025-11-04 12:15\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Language: ca_ES\n" diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index 8b5a81ae7..9dd615c85 100644 --- a/src/locale/de_DE/LC_MESSAGES/django.po +++ b/src/locale/de_DE/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-11-03 17:49\n" +"PO-Revision-Date: 2025-11-06 00:35\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po index 4ed662fe8..dfaede9b1 100644 --- a/src/locale/fr_FR/LC_MESSAGES/django.po +++ b/src/locale/fr_FR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-29 12:14\n" +"PO-Revision-Date: 2025-11-06 12:14\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" diff --git a/src/locale/zh_TW/LC_MESSAGES/django.po b/src/locale/zh_TW/LC_MESSAGES/django.po index 82b5e9f00..5f9241924 100644 --- a/src/locale/zh_TW/LC_MESSAGES/django.po +++ b/src/locale/zh_TW/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"PO-Revision-Date: 2025-11-06 00:35\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Language: zh_TW\n" From cac48c9855322cd8e93d15664a4afe1a1b63e612 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 6 Nov 2025 11:39:08 -0800 Subject: [PATCH 055/133] Bump version to 2.19.5 --- pyproject.toml | 2 +- src-ui/package.json | 2 +- src-ui/src/environments/environment.prod.ts | 2 +- src/paperless/version.py | 2 +- uv.lock | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2b7685ac6..1c3f1ee2f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "paperless-ngx" -version = "2.19.4" +version = "2.19.5" description = "A community-supported supercharged document management system: scan, index and archive all your physical documents" readme = "README.md" requires-python = ">=3.10" diff --git a/src-ui/package.json b/src-ui/package.json index e49d4289b..c5e945759 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -1,6 +1,6 @@ { "name": "paperless-ngx-ui", - "version": "2.19.4", + "version": "2.19.5", "scripts": { "preinstall": "npx only-allow pnpm", "ng": "ng", diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index 923e6be38..8bec5f2e6 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -6,7 +6,7 @@ export const environment = { apiVersion: '9', // match src/paperless/settings.py appTitle: 'Paperless-ngx', tag: 'prod', - version: '2.19.4', + version: '2.19.5', webSocketHost: window.location.host, webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:', webSocketBaseUrl: base_url.pathname + 'ws/', diff --git a/src/paperless/version.py b/src/paperless/version.py index cf87791f6..8efbb2728 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1,6 +1,6 @@ from typing import Final -__version__: Final[tuple[int, int, int]] = (2, 19, 4) +__version__: Final[tuple[int, int, int]] = (2, 19, 5) # Version string like X.Y.Z __full_version_str__: Final[str] = ".".join(map(str, __version__)) # Version string like X.Y diff --git a/uv.lock b/uv.lock index 2157b31aa..c6808ae7b 100644 --- a/uv.lock +++ b/uv.lock @@ -2115,7 +2115,7 @@ wheels = [ [[package]] name = "paperless-ngx" -version = "2.19.4" +version = "2.19.5" source = { virtual = "." } dependencies = [ { name = "babel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, From 7927e5c4366ed3fb4e8d83b2317ab03fd93261b4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 13:01:52 -0800 Subject: [PATCH 056/133] Changelog v2.19.5 - GHA (#11305) --- docs/changelog.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/changelog.md b/docs/changelog.md index 7f51cb04e..064e37adb 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,19 @@ # Changelog +## paperless-ngx 2.19.5 + +### Bug Fixes + +- Fix: ensure custom field query propagation, change detection [@shamoon](https://github.com/shamoon) ([#11291](https://github.com/paperless-ngx/paperless-ngx/pull/11291)) + +### Dependencies + +- docker(deps): Bump astral-sh/uv from 0.9.4-python3.12-bookworm-slim to 0.9.7-python3.12-bookworm-slim @[dependabot[bot]](https://github.com/apps/dependabot) ([#11283](https://github.com/paperless-ngx/paperless-ngx/pull/11283)) + +### All App Changes + +- Fix: ensure custom field query propagation, change detection [@shamoon](https://github.com/shamoon) ([#11291](https://github.com/paperless-ngx/paperless-ngx/pull/11291)) + ## paperless-ngx 2.19.4 ### Bug Fixes From 2a9d1fce0d99d7e4b001185e7fa456f6a57a201c Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 7 Nov 2025 11:20:27 -0800 Subject: [PATCH 057/133] Chore: include password validation on user edit (#11308) --- .../profile-edit-dialog.component.ts | 2 + src/documents/tests/test_api_permissions.py | 4 +- src/documents/tests/test_api_profile.py | 59 +++++++++++++++++++ src/paperless/serialisers.py | 41 ++++++++----- src/paperless/views.py | 6 +- 5 files changed, 93 insertions(+), 19 deletions(-) diff --git a/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts b/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts index dfa5c56a8..c4a103397 100644 --- a/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts +++ b/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts @@ -183,6 +183,7 @@ export class ProfileEditDialogComponent this.newPassword && this.currentPassword !== this.newPassword const profile = Object.assign({}, this.form.value) delete profile.totp_code + this.error = null this.networkActive = true this.profileService .update(profile) @@ -204,6 +205,7 @@ export class ProfileEditDialogComponent }, error: (error) => { this.toastService.showError($localize`Error saving profile`, error) + this.error = error?.error this.networkActive = false }, }) diff --git a/src/documents/tests/test_api_permissions.py b/src/documents/tests/test_api_permissions.py index 8ffce1f95..bc81dabe9 100644 --- a/src/documents/tests/test_api_permissions.py +++ b/src/documents/tests/test_api_permissions.py @@ -648,7 +648,7 @@ class TestApiUser(DirectoriesMixin, APITestCase): user1 = { "username": "testuser", - "password": "test", + "password": "areallysupersecretpassword235", "first_name": "Test", "last_name": "User", } @@ -730,7 +730,7 @@ class TestApiUser(DirectoriesMixin, APITestCase): f"{self.ENDPOINT}{user1.pk}/", data={ "first_name": "Updated Name 2", - "password": "123xyz", + "password": "newreallystrongpassword456", }, ) diff --git a/src/documents/tests/test_api_profile.py b/src/documents/tests/test_api_profile.py index 8475459a2..2eedf3297 100644 --- a/src/documents/tests/test_api_profile.py +++ b/src/documents/tests/test_api_profile.py @@ -192,6 +192,65 @@ class TestApiProfile(DirectoriesMixin, APITestCase): self.assertEqual(user.first_name, user_data["first_name"]) self.assertEqual(user.last_name, user_data["last_name"]) + def test_update_profile_invalid_password_returns_field_error(self): + """ + GIVEN: + - Configured user + WHEN: + - API call is made to update profile with weak password + THEN: + - Profile update fails with password field error + """ + + user_data = { + "email": "new@email.com", + "password": "short", # shorter than default validator threshold + "first_name": "new first name", + "last_name": "new last name", + } + + response = self.client.patch(self.ENDPOINT, user_data) + + self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) + self.assertIn("password", response.data) + self.assertIsInstance(response.data["password"], list) + self.assertTrue( + any( + "too short" in message.lower() for message in response.data["password"] + ), + ) + + def test_update_profile_placeholder_password_skips_validation(self): + """ + GIVEN: + - Configured user with existing password + WHEN: + - API call is made with the obfuscated placeholder password value + THEN: + - Profile is updated without changing the password or running validators + """ + + original_password = "orig-pass-12345" + self.user.set_password(original_password) + self.user.save() + + user_data = { + "email": "new@email.com", + "password": "*" * 12, # matches obfuscated value from serializer + "first_name": "new first name", + "last_name": "new last name", + } + + response = self.client.patch(self.ENDPOINT, user_data) + + self.assertEqual(response.status_code, status.HTTP_200_OK) + + user = User.objects.get(username=self.user.username) + self.assertTrue(user.check_password(original_password)) + self.assertEqual(user.email, user_data["email"]) + self.assertEqual(user.first_name, user_data["first_name"]) + self.assertEqual(user.last_name, user_data["last_name"]) + def test_update_auth_token(self): """ GIVEN: diff --git a/src/paperless/serialisers.py b/src/paperless/serialisers.py index 754a3c594..97b84fd14 100644 --- a/src/paperless/serialisers.py +++ b/src/paperless/serialisers.py @@ -9,6 +9,7 @@ from allauth.socialaccount.models import SocialApp from django.contrib.auth.models import Group from django.contrib.auth.models import Permission from django.contrib.auth.models import User +from django.contrib.auth.password_validation import validate_password from rest_framework import serializers from rest_framework.authtoken.serializers import AuthTokenSerializer @@ -19,6 +20,23 @@ from paperless_mail.serialisers import ObfuscatedPasswordField logger = logging.getLogger("paperless.settings") +class PasswordValidationMixin: + def _has_real_password(self, value: str | None) -> bool: + return bool(value) and value.replace("*", "") != "" + + def validate_password(self, value: str) -> str: + if not self._has_real_password(value): + return value + + request = self.context.get("request") if hasattr(self, "context") else None + user = self.instance or ( + request.user if request and hasattr(request, "user") else None + ) + validate_password(value, user) # raise ValidationError if invalid + + return value + + class PaperlessAuthTokenSerializer(AuthTokenSerializer): code = serializers.CharField( label="MFA Code", @@ -49,7 +67,7 @@ class PaperlessAuthTokenSerializer(AuthTokenSerializer): return attrs -class UserSerializer(serializers.ModelSerializer): +class UserSerializer(PasswordValidationMixin, serializers.ModelSerializer): password = ObfuscatedPasswordField(required=False) user_permissions = serializers.SlugRelatedField( many=True, @@ -87,11 +105,11 @@ class UserSerializer(serializers.ModelSerializer): return obj.get_group_permissions() def update(self, instance, validated_data): - if "password" in validated_data: - if len(validated_data.get("password").replace("*", "")) > 0: - instance.set_password(validated_data.get("password")) - instance.save() - validated_data.pop("password") + password = validated_data.pop("password", None) + if self._has_real_password(password): + instance.set_password(password) + instance.save() + super().update(instance, validated_data) return instance @@ -102,12 +120,7 @@ class UserSerializer(serializers.ModelSerializer): user_permissions = None if "user_permissions" in validated_data: user_permissions = validated_data.pop("user_permissions") - password = None - if ( - "password" in validated_data - and len(validated_data.get("password").replace("*", "")) > 0 - ): - password = validated_data.pop("password") + password = validated_data.pop("password", None) user = User.objects.create(**validated_data) # set groups if groups: @@ -116,7 +129,7 @@ class UserSerializer(serializers.ModelSerializer): if user_permissions: user.user_permissions.set(user_permissions) # set password - if password: + if self._has_real_password(password): user.set_password(password) user.save() return user @@ -156,7 +169,7 @@ class SocialAccountSerializer(serializers.ModelSerializer): return "Unknown App" -class ProfileSerializer(serializers.ModelSerializer): +class ProfileSerializer(PasswordValidationMixin, serializers.ModelSerializer): email = serializers.EmailField(allow_blank=True, required=False) password = ObfuscatedPasswordField(required=False, allow_null=False) auth_token = serializers.SlugRelatedField(read_only=True, slug_field="key") diff --git a/src/paperless/views.py b/src/paperless/views.py index 69375e1bc..e79c0e668 100644 --- a/src/paperless/views.py +++ b/src/paperless/views.py @@ -197,10 +197,10 @@ class ProfileView(GenericAPIView): serializer.is_valid(raise_exception=True) user = self.request.user if hasattr(self.request, "user") else None - if len(serializer.validated_data.get("password").replace("*", "")) > 0: - user.set_password(serializer.validated_data.get("password")) + password = serializer.validated_data.pop("password", None) + if password and password.replace("*", ""): + user.set_password(password) user.save() - serializer.validated_data.pop("password") for key, value in serializer.validated_data.items(): setattr(user, key, value) From 2049497b76be79cc835d752e7c7972a6944e5ed5 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 19:23:35 +0000 Subject: [PATCH 058/133] Auto translate strings --- src-ui/messages.xlf | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 63360c991..13deb8a89 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -2557,7 +2557,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 @@ -6044,71 +6044,71 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 From e9f846ca24f5e7915869e03ab95498f2369e6965 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 8 Nov 2025 13:31:57 -0800 Subject: [PATCH 059/133] Fix: include replace none logic in storage path preview, improve jinja conditionals for empty metadata (#11315) --- src/documents/file_handling.py | 45 ++++++++++++----------- src/documents/templating/filepath.py | 31 +++++++++++++++- src/documents/tests/test_api_objects.py | 40 ++++++++++++++++++++ src/documents/tests/test_file_handling.py | 41 +++++++++++++++++++++ src/documents/views.py | 4 +- 5 files changed, 135 insertions(+), 26 deletions(-) diff --git a/src/documents/file_handling.py b/src/documents/file_handling.py index 3a0ffd9fb..48cd57311 100644 --- a/src/documents/file_handling.py +++ b/src/documents/file_handling.py @@ -99,6 +99,29 @@ def generate_unique_filename(doc, *, archive_filename=False) -> Path: return new_filename +def format_filename(document: Document, template_str: str) -> str | None: + rendered_filename = validate_filepath_template_and_render( + template_str, + document, + ) + if rendered_filename is None: + return None + + # Apply this setting. It could become a filter in the future (or users could use |default) + if settings.FILENAME_FORMAT_REMOVE_NONE: + rendered_filename = rendered_filename.replace("/-none-/", "/") + rendered_filename = rendered_filename.replace(" -none-", "") + rendered_filename = rendered_filename.replace("-none-", "") + rendered_filename = rendered_filename.strip(os.sep) + + rendered_filename = rendered_filename.replace( + "-none-", + "none", + ) # backward compatibility + + return rendered_filename + + def generate_filename( doc: Document, *, @@ -108,28 +131,6 @@ def generate_filename( ) -> Path: base_path: Path | None = None - def format_filename(document: Document, template_str: str) -> str | None: - rendered_filename = validate_filepath_template_and_render( - template_str, - document, - ) - if rendered_filename is None: - return None - - # Apply this setting. It could become a filter in the future (or users could use |default) - if settings.FILENAME_FORMAT_REMOVE_NONE: - rendered_filename = rendered_filename.replace("/-none-/", "/") - rendered_filename = rendered_filename.replace(" -none-", "") - rendered_filename = rendered_filename.replace("-none-", "") - rendered_filename = rendered_filename.strip(os.sep) - - rendered_filename = rendered_filename.replace( - "-none-", - "none", - ) # backward compatibility - - return rendered_filename - # Determine the source of the format string if doc.storage_path is not None: filename_format = doc.storage_path.path diff --git a/src/documents/templating/filepath.py b/src/documents/templating/filepath.py index 00de8de2c..7d76e7f31 100644 --- a/src/documents/templating/filepath.py +++ b/src/documents/templating/filepath.py @@ -52,6 +52,33 @@ class FilePathTemplate(Template): return clean_filepath(original_render) +class PlaceholderString(str): + """ + String subclass used as a sentinel for empty metadata values inside templates. + + - Renders as \"-none-\" to preserve existing filename cleaning logic. + - Compares equal to either \"-none-\" or \"none\" so templates can check for either. + - Evaluates to False so {% if correspondent %} behaves intuitively. + """ + + def __new__(cls, value: str = "-none-"): + return super().__new__(cls, value) + + def __bool__(self) -> bool: + return False + + def __eq__(self, other) -> bool: + if isinstance(other, str) and other == "none": + other = "-none-" + return super().__eq__(other) + + def __ne__(self, other) -> bool: + return not self.__eq__(other) + + +NO_VALUE_PLACEHOLDER = PlaceholderString("-none-") + + _template_environment.undefined = _LogStrictUndefined _template_environment.filters["get_cf_value"] = get_cf_value @@ -128,7 +155,7 @@ def get_added_date_context(document: Document) -> dict[str, str]: def get_basic_metadata_context( document: Document, *, - no_value_default: str, + no_value_default: str = NO_VALUE_PLACEHOLDER, ) -> dict[str, str]: """ Given a Document, constructs some basic information about it. If certain values are not set, @@ -266,7 +293,7 @@ def validate_filepath_template_and_render( # Build the context dictionary context = ( {"document": document} - | get_basic_metadata_context(document, no_value_default="-none-") + | get_basic_metadata_context(document, no_value_default=NO_VALUE_PLACEHOLDER) | get_creation_date_context(document) | get_added_date_context(document) | get_tags_context(tags_list) diff --git a/src/documents/tests/test_api_objects.py b/src/documents/tests/test_api_objects.py index bba9031db..014dd3c2a 100644 --- a/src/documents/tests/test_api_objects.py +++ b/src/documents/tests/test_api_objects.py @@ -4,6 +4,7 @@ from unittest import mock from django.contrib.auth.models import Permission from django.contrib.auth.models import User +from django.test import override_settings from rest_framework import status from rest_framework.test import APITestCase @@ -334,6 +335,45 @@ class TestApiStoragePaths(DirectoriesMixin, APITestCase): self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertEqual(response.data, "path/Something") + def test_test_storage_path_respects_none_placeholder_setting(self): + """ + GIVEN: + - A storage path template referencing an empty field + WHEN: + - Testing the template before and after enabling remove-none + THEN: + - The preview shows "none" by default and drops the placeholder when configured + """ + document = Document.objects.create( + mime_type="application/pdf", + storage_path=self.sp1, + title="Something", + checksum="123", + ) + payload = json.dumps( + { + "document": document.id, + "path": "folder/{{ correspondent }}/{{ title }}", + }, + ) + + response = self.client.post( + f"{self.ENDPOINT}test/", + payload, + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertEqual(response.data, "folder/none/Something") + + with override_settings(FILENAME_FORMAT_REMOVE_NONE=True): + response = self.client.post( + f"{self.ENDPOINT}test/", + payload, + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertEqual(response.data, "folder/Something") + class TestBulkEditObjects(APITestCase): # See test_api_permissions.py for bulk tests on permissions diff --git a/src/documents/tests/test_file_handling.py b/src/documents/tests/test_file_handling.py index 62ca52d71..c0070aa81 100644 --- a/src/documents/tests/test_file_handling.py +++ b/src/documents/tests/test_file_handling.py @@ -1078,6 +1078,47 @@ class TestFilenameGeneration(DirectoriesMixin, TestCase): Path("SomeImportantNone/2020-07-25.pdf"), ) + @override_settings( + FILENAME_FORMAT=( + "{% if correspondent == 'none' %}none/{% endif %}" + "{% if correspondent == '-none-' %}dash/{% endif %}" + "{% if not correspondent %}false/{% endif %}" + "{% if correspondent != 'none' %}notnoneyes/{% else %}notnoneno/{% endif %}" + "{{ correspondent or 'missing' }}/{{ title }}" + ), + ) + def test_placeholder_matches_none_variants_and_false(self): + """ + GIVEN: + - Templates that compare against 'none', '-none-' and rely on truthiness + WHEN: + - A document has or lacks a correspondent + THEN: + - Empty placeholders behave like both strings and evaluate False + """ + doc_without_correspondent = Document.objects.create( + title="does not matter", + mime_type="application/pdf", + checksum="abc", + ) + doc_with_correspondent = Document.objects.create( + title="does not matter", + mime_type="application/pdf", + checksum="def", + correspondent=Correspondent.objects.create(name="Acme"), + ) + + self.assertEqual( + generate_filename(doc_without_correspondent), + Path( + "none/dash/false/notnoneno/missing/does not matter.pdf", + ), + ) + self.assertEqual( + generate_filename(doc_with_correspondent), + Path("notnoneyes/Acme/does not matter.pdf"), + ) + @override_settings( FILENAME_FORMAT="{created_year_short}/{created_month_name_short}/{created_month_name}/{title}", ) diff --git a/src/documents/views.py b/src/documents/views.py index ec347a553..c007a4cee 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -108,6 +108,7 @@ from documents.conditionals import thumbnail_last_modified from documents.data_models import ConsumableDocument from documents.data_models import DocumentMetadataOverrides from documents.data_models import DocumentSource +from documents.file_handling import format_filename from documents.filters import CorrespondentFilterSet from documents.filters import CustomFieldFilterSet from documents.filters import DocumentFilterSet @@ -183,7 +184,6 @@ from documents.tasks import index_optimize from documents.tasks import sanity_check from documents.tasks import train_classifier from documents.tasks import update_document_parent_tags -from documents.templating.filepath import validate_filepath_template_and_render from documents.utils import get_boolean from paperless import version from paperless.celery import app as celery_app @@ -2336,7 +2336,7 @@ class StoragePathViewSet(ModelViewSet, PermissionsAwareDocumentCountMixin): document = serializer.validated_data.get("document") path = serializer.validated_data.get("path") - result = validate_filepath_template_and_render(path, document) + result = format_filename(document, path) return Response(result) From 44f0191bfbaba378852528ffe99e4b64acdaba28 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 8 Nov 2025 16:34:46 -0800 Subject: [PATCH 060/133] Fix: only cache remote version for version checking (#11320) --- src/documents/views.py | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/src/documents/views.py b/src/documents/views.py index c007a4cee..822647fdb 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -23,6 +23,7 @@ from django.conf import settings from django.contrib.auth.models import Group from django.contrib.auth.models import User from django.contrib.contenttypes.models import ContentType +from django.core.cache import cache from django.db import connections from django.db.migrations.loader import MigrationLoader from django.db.migrations.recorder import MigrationRecorder @@ -51,7 +52,6 @@ from django.utils.timezone import make_aware from django.utils.translation import get_language from django.views import View from django.views.decorators.cache import cache_control -from django.views.decorators.cache import cache_page from django.views.decorators.http import condition from django.views.decorators.http import last_modified from django.views.generic import TemplateView @@ -2426,7 +2426,6 @@ class UiSettingsView(GenericAPIView): ) -@method_decorator(cache_page(60 * 15), name="dispatch") @extend_schema_view( get=extend_schema( description="Get the current version of the Paperless-NGX server", @@ -2436,31 +2435,34 @@ class UiSettingsView(GenericAPIView): ), ) class RemoteVersionView(GenericAPIView): + cache_key = "remote_version_view_latest_release" + def get(self, request, format=None): - remote_version = "0.0.0" - is_greater_than_current = False current_version = packaging_version.parse(version.__full_version_str__) - try: - resp = httpx.get( - "https://api.github.com/repos/paperless-ngx/paperless-ngx/releases/latest", - headers={"Accept": "application/json"}, - ) - resp.raise_for_status() + remote_version = cache.get(self.cache_key) + if remote_version is None: try: + resp = httpx.get( + "https://api.github.com/repos/paperless-ngx/paperless-ngx/releases/latest", + headers={"Accept": "application/json"}, + ) + resp.raise_for_status() data = resp.json() remote_version = data["tag_name"] # Some early tags used ngx-x.y.z remote_version = remote_version.removeprefix("ngx-") except ValueError as e: logger.debug(f"An error occurred parsing remote version json: {e}") - except httpx.HTTPError as e: - logger.debug(f"An error occurred checking for available updates: {e}") + except httpx.HTTPError as e: + logger.debug(f"An error occurred checking for available updates: {e}") + + if remote_version: + cache.set(self.cache_key, remote_version, 60 * 15) + else: + remote_version = "0.0.0" is_greater_than_current = ( - packaging_version.parse( - remote_version, - ) - > current_version + packaging_version.parse(remote_version) > current_version ) return Response( From 005ef4fce68cce4458aed2f644b78bb38d9c3eb2 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 11 Nov 2025 08:27:24 -0800 Subject: [PATCH 061/133] Fix: update Outlook refresh token when refreshed (#11341) --- src/paperless_mail/oauth.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/paperless_mail/oauth.py b/src/paperless_mail/oauth.py index f2050451b..08b5d9647 100644 --- a/src/paperless_mail/oauth.py +++ b/src/paperless_mail/oauth.py @@ -103,6 +103,9 @@ class PaperlessMailOAuth2Manager: refresh_token=account.refresh_token, ), ) + if "refresh_token" in result: + # Outlook returns a new refresh token on refresh, Gmail does not + account.refresh_token = result["refresh_token"] account.password = result["access_token"] account.expiration = timezone.now() + timedelta( seconds=result["expires_in"], From 0219df5b6766ddc120dfeb40f0d8c3401ea6e6f7 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 14 Nov 2025 08:09:09 -0800 Subject: [PATCH 062/133] Fixhancement: trim whitespace for some text searches (#11357) --- .../filter-editor/filter-editor.component.ts | 4 ++-- src/documents/filters.py | 3 +++ src/documents/tests/test_api_documents.py | 17 +++++++++++++++++ src/documents/views.py | 2 +- 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts index 9e83797a6..fecbaa170 100644 --- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts +++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts @@ -747,7 +747,7 @@ export class FilterEditorComponent ) { filterRules.push({ rule_type: FILTER_TITLE_CONTENT, - value: this._textFilter, + value: this._textFilter.trim(), }) } if (this._textFilter && this.textFilterTarget == TEXT_FILTER_TARGET_TITLE) { @@ -805,7 +805,7 @@ export class FilterEditorComponent ) { filterRules.push({ rule_type: FILTER_FULLTEXT_QUERY, - value: this._textFilter, + value: this._textFilter.trim(), }) } if ( diff --git a/src/documents/filters.py b/src/documents/filters.py index 3a8d4d327..54f3c1fa0 100644 --- a/src/documents/filters.py +++ b/src/documents/filters.py @@ -160,6 +160,7 @@ class InboxFilter(Filter): @extend_schema_field(serializers.CharField) class TitleContentFilter(Filter): def filter(self, qs, value): + value = value.strip() if isinstance(value, str) else value if value: return qs.filter(Q(title__icontains=value) | Q(content__icontains=value)) else: @@ -214,6 +215,7 @@ class CustomFieldFilterSet(FilterSet): @extend_schema_field(serializers.CharField) class CustomFieldsFilter(Filter): def filter(self, qs, value): + value = value.strip() if isinstance(value, str) else value if value: fields_with_matching_selects = CustomField.objects.filter( extra_data__icontains=value, @@ -244,6 +246,7 @@ class CustomFieldsFilter(Filter): class MimeTypeFilter(Filter): def filter(self, qs, value): + value = value.strip() if isinstance(value, str) else value if value: return qs.filter(mime_type__icontains=value) else: diff --git a/src/documents/tests/test_api_documents.py b/src/documents/tests/test_api_documents.py index f7f44c974..87190c23b 100644 --- a/src/documents/tests/test_api_documents.py +++ b/src/documents/tests/test_api_documents.py @@ -941,6 +941,23 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): results = response.data["results"] self.assertEqual(len(results), 0) + def test_documents_title_content_filter_strips_boundary_whitespace(self): + doc = Document.objects.create( + title="Testwort", + content="", + checksum="A", + mime_type="application/pdf", + ) + + response = self.client.get( + "/api/documents/", + {"title_content": " Testwort "}, + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + results = response.data["results"] + self.assertEqual(len(results), 1) + self.assertEqual(results[0]["id"], doc.id) + def test_document_permissions_filters(self): """ GIVEN: diff --git a/src/documents/views.py b/src/documents/views.py index 822647fdb..8aee24561 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -1863,7 +1863,7 @@ class SearchAutoCompleteView(GenericAPIView): user = self.request.user if hasattr(self.request, "user") else None if "term" in request.query_params: - term = request.query_params["term"] + term = request.query_params["term"].strip() else: return HttpResponseBadRequest("Term required") From 0cbab1ae80629e668da8b7480fdb286913675ef2 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 14 Nov 2025 16:10:47 +0000 Subject: [PATCH 063/133] Auto translate strings --- src/locale/en_US/LC_MESSAGES/django.po | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/locale/en_US/LC_MESSAGES/django.po b/src/locale/en_US/LC_MESSAGES/django.po index 1916bb08b..bc2985431 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-10-28 18:06+0000\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" "PO-Revision-Date: 2022-02-17 04:17\n" "Last-Translator: \n" "Language-Team: English\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" From b12f1e757c4c1d2ce5062060a47d150bc7a64c86 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 14 Nov 2025 09:28:46 -0800 Subject: [PATCH 064/133] Fixhancement: refactor email attachment logic (#11336) --- src/documents/mail.py | 64 ++++++++++++------------- src/documents/signals/handlers.py | 41 ++++++++++------ src/documents/tests/test_workflows.py | 68 +++++++++++++++++++++++++++ src/documents/views.py | 21 ++++++++- 4 files changed, 143 insertions(+), 51 deletions(-) diff --git a/src/documents/mail.py b/src/documents/mail.py index 6af48ca9b..21bf03c7a 100644 --- a/src/documents/mail.py +++ b/src/documents/mail.py @@ -1,25 +1,26 @@ from __future__ import annotations +from dataclasses import dataclass from email import message_from_bytes -from typing import TYPE_CHECKING +from pathlib import Path from django.conf import settings from django.core.mail import EmailMessage from filelock import FileLock -from documents.data_models import ConsumableDocument -if TYPE_CHECKING: - from documents.models import Document +@dataclass(frozen=True) +class EmailAttachment: + path: Path + mime_type: str + friendly_name: str def send_email( subject: str, body: str, to: list[str], - attachments: list[Document | ConsumableDocument], - *, - use_archive: bool, + attachments: list[EmailAttachment], ) -> int: """ Send an email with attachments. @@ -28,8 +29,7 @@ def send_email( subject: Email subject body: Email body text to: List of recipient email addresses - attachments: List of documents to attach (the list may be empty) - use_archive: Whether to attach archive versions when available + attachments: List of attachments Returns: Number of emails sent @@ -46,47 +46,41 @@ def send_email( # Something could be renaming the file concurrently so it can't be attached with FileLock(settings.MEDIA_LOCK): - for document in attachments: - if isinstance(document, ConsumableDocument): - attachment_path = document.original_file - friendly_filename = document.original_file.name - else: - attachment_path = ( - document.archive_path - if use_archive and document.has_archive_version - else document.source_path - ) - friendly_filename = _get_unique_filename( - document, - used_filenames, - archive=use_archive and document.has_archive_version, - ) - used_filenames.add(friendly_filename) + for attachment in attachments: + filename = _get_unique_filename( + attachment.friendly_name, + used_filenames, + ) + used_filenames.add(filename) - with attachment_path.open("rb") as f: + with attachment.path.open("rb") as f: content = f.read() - if document.mime_type == "message/rfc822": + if attachment.mime_type == "message/rfc822": # See https://forum.djangoproject.com/t/using-emailmessage-with-an-attached-email-file-crashes-due-to-non-ascii/37981 content = message_from_bytes(content) email.attach( - filename=friendly_filename, + filename=filename, content=content, - mimetype=document.mime_type, + mimetype=attachment.mime_type, ) return email.send() -def _get_unique_filename(doc: Document, used_names: set[str], *, archive: bool) -> str: +def _get_unique_filename(friendly_name: str, used_names: set[str]) -> str: """ - Constructs a unique friendly filename for the given document. + Constructs a unique friendly filename for the given document, append a counter if needed. + """ + if friendly_name not in used_names: + return friendly_name - The filename might not be unique enough, so a counter is appended if needed. - """ - counter = 0 + stem = Path(friendly_name).stem + suffix = "".join(Path(friendly_name).suffixes) + + counter = 1 while True: - filename = doc.get_public_filename(archive=archive, counter=counter) + filename = f"{stem}_{counter:02}{suffix}" if filename not in used_names: return filename counter += 1 diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index 22abf625e..a7641ecf2 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -31,11 +31,10 @@ from guardian.shortcuts import remove_perm from documents import matching from documents.caching import clear_document_caches -from documents.data_models import ConsumableDocument -from documents.data_models import DocumentSource from documents.file_handling import create_source_path_directory from documents.file_handling import delete_empty_directories from documents.file_handling import generate_unique_filename +from documents.mail import EmailAttachment from documents.mail import send_email from documents.models import Correspondent from documents.models import CustomField @@ -57,6 +56,7 @@ from documents.templating.workflows import parse_w_workflow_placeholders if TYPE_CHECKING: from documents.classifier import DocumentClassifier + from documents.data_models import ConsumableDocument from documents.data_models import DocumentMetadataOverrides logger = logging.getLogger("paperless.handlers") @@ -1163,28 +1163,41 @@ def run_workflows( else "" ) try: - attachments = [] + attachments: list[EmailAttachment] = [] if action.email.include_document: + attachment: EmailAttachment | None = None if trigger_type in [ WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED, WorkflowTrigger.WorkflowTriggerType.SCHEDULED, - ]: - # Updated and scheduled can pass the document directly - attachments = [document] + ] and isinstance(document, Document): + friendly_name = ( + Path(current_filename).name + if current_filename + else document.source_path.name + ) + attachment = EmailAttachment( + path=document.source_path, + mime_type=document.mime_type, + friendly_name=friendly_name, + ) elif original_file: - # For consumed and added document is not yet saved, so pass the original file - attachments = [ - ConsumableDocument( - source=DocumentSource.ApiUpload, - original_file=original_file, - ), - ] + friendly_name = ( + Path(current_filename).name + if current_filename + else original_file.name + ) + attachment = EmailAttachment( + path=original_file, + mime_type=document.mime_type, + friendly_name=friendly_name, + ) + if attachment: + attachments = [attachment] n_messages = send_email( subject=subject, body=body, to=action.email.to.split(","), attachments=attachments, - use_archive=False, ) logger.debug( f"Sent {n_messages} notification email(s) to {action.email.to}", diff --git a/src/documents/tests/test_workflows.py b/src/documents/tests/test_workflows.py index c25565ae6..a2a5aa9c3 100644 --- a/src/documents/tests/test_workflows.py +++ b/src/documents/tests/test_workflows.py @@ -8,8 +8,10 @@ from typing import TYPE_CHECKING from unittest import mock import pytest +from django.conf import settings from django.contrib.auth.models import Group from django.contrib.auth.models import User +from django.core import mail from django.test import override_settings from django.utils import timezone from guardian.shortcuts import assign_perm @@ -21,6 +23,8 @@ from pytest_httpx import HTTPXMock from rest_framework.test import APIClient from rest_framework.test import APITestCase +from documents.file_handling import create_source_path_directory +from documents.file_handling import generate_unique_filename from documents.signals.handlers import run_workflows from documents.signals.handlers import send_webhook @@ -2989,6 +2993,70 @@ class TestWorkflows( mock_email_send.assert_called_once() + @override_settings( + PAPERLESS_EMAIL_HOST="localhost", + EMAIL_ENABLED=True, + PAPERLESS_URL="http://localhost:8000", + EMAIL_BACKEND="django.core.mail.backends.locmem.EmailBackend", + ) + def test_workflow_email_attachment_uses_storage_filename(self): + """ + GIVEN: + - Document updated workflow with include document action + - Document stored with formatted storage-path filename + WHEN: + - Workflow sends an email + THEN: + - Attachment filename matches the stored filename + """ + + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED, + ) + email_action = WorkflowActionEmail.objects.create( + subject="Test Notification: {doc_title}", + body="Test message: {doc_url}", + to="me@example.com", + include_document=True, + ) + action = WorkflowAction.objects.create( + type=WorkflowAction.WorkflowActionType.EMAIL, + email=email_action, + ) + workflow = Workflow.objects.create( + name="Workflow attachment filename", + order=0, + ) + workflow.triggers.add(trigger) + workflow.actions.add(action) + workflow.save() + + storage_path = StoragePath.objects.create( + name="Fancy Path", + path="formatted/{{ document.pk }}/{{ title }}", + ) + doc = Document.objects.create( + title="workflow doc", + correspondent=self.c, + checksum="workflow-email-attachment", + mime_type="application/pdf", + storage_path=storage_path, + original_filename="workflow-orig.pdf", + ) + + # eg what happens in update_filename_and_move_files + generated = generate_unique_filename(doc) + destination = (settings.ORIGINALS_DIR / generated).resolve() + create_source_path_directory(destination) + shutil.copy(self.SAMPLE_DIR / "simple.pdf", destination) + Document.objects.filter(pk=doc.pk).update(filename=generated.as_posix()) + + run_workflows(WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED, doc) + + self.assertEqual(len(mail.outbox), 1) + attachment_names = [att[0] for att in mail.outbox[0].attachments] + self.assertEqual(attachment_names, [Path(generated).name]) + @override_settings( EMAIL_ENABLED=False, ) diff --git a/src/documents/views.py b/src/documents/views.py index 8aee24561..ba265926c 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -120,6 +120,7 @@ from documents.filters import PaperlessTaskFilterSet from documents.filters import ShareLinkFilterSet from documents.filters import StoragePathFilterSet from documents.filters import TagFilterSet +from documents.mail import EmailAttachment from documents.mail import send_email from documents.matching import match_correspondents from documents.matching import match_document_types @@ -1216,12 +1217,28 @@ class DocumentViewSet( return HttpResponseForbidden("Insufficient permissions") try: + attachments: list[EmailAttachment] = [] + for doc in documents: + attachment_path = ( + doc.archive_path + if use_archive_version and doc.has_archive_version + else doc.source_path + ) + attachments.append( + EmailAttachment( + path=attachment_path, + mime_type=doc.mime_type, + friendly_name=doc.get_public_filename( + archive=use_archive_version and doc.has_archive_version, + ), + ), + ) + send_email( subject=subject, body=message, to=addresses, - attachments=documents, - use_archive=use_archive_version, + attachments=attachments, ) logger.debug( From c5ad148dc74db26252ff95995c48e3a91daab22c Mon Sep 17 00:00:00 2001 From: Ed Bardsley Date: Fri, 14 Nov 2025 09:45:13 -0800 Subject: [PATCH 065/133] Fix: include BASE_URL when constructing `doc_url` for workflows (#11360) --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- src/documents/signals/handlers.py | 8 ++++++-- src/documents/tests/test_workflows.py | 4 +++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index a7641ecf2..738ecb086 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -1095,7 +1095,9 @@ def run_workflows( if not use_overrides: title = document.title - doc_url = f"{settings.PAPERLESS_URL}/documents/{document.pk}/" + doc_url = ( + f"{settings.PAPERLESS_URL}{settings.BASE_URL}documents/{document.pk}/" + ) correspondent = ( document.correspondent.name if document.correspondent else "" ) @@ -1212,7 +1214,9 @@ def run_workflows( def webhook_action(): if not use_overrides: title = document.title - doc_url = f"{settings.PAPERLESS_URL}/documents/{document.pk}/" + doc_url = ( + f"{settings.PAPERLESS_URL}{settings.BASE_URL}documents/{document.pk}/" + ) correspondent = ( document.correspondent.name if document.correspondent else "" ) diff --git a/src/documents/tests/test_workflows.py b/src/documents/tests/test_workflows.py index a2a5aa9c3..6438e4b10 100644 --- a/src/documents/tests/test_workflows.py +++ b/src/documents/tests/test_workflows.py @@ -3212,6 +3212,8 @@ class TestWorkflows( @override_settings( PAPERLESS_URL="http://localhost:8000", + PAPERLESS_FORCE_SCRIPT_NAME="/paperless", + BASE_URL="/paperless/", ) @mock.patch("documents.signals.handlers.send_webhook.delay") def test_workflow_webhook_action_body(self, mock_post): @@ -3263,7 +3265,7 @@ class TestWorkflows( mock_post.assert_called_once_with( url="http://paperless-ngx.com", - data=f"Test message: http://localhost:8000/documents/{doc.id}/", + data=f"Test message: http://localhost:8000/paperless/documents/{doc.id}/", headers={}, files=None, as_json=False, From dd6f7fad32f690fca53ee25c039dd5ba4b1e1489 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Nov 2025 18:37:33 +0000 Subject: [PATCH 066/133] docker(deps): bump astral-sh/uv (#11338) Bumps [astral-sh/uv](https://github.com/astral-sh/uv) from 0.9.7-python3.12-bookworm-slim to 0.9.9-python3.12-bookworm-slim. - [Release notes](https://github.com/astral-sh/uv/releases) - [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/uv/compare/0.9.7...0.9.9) --- updated-dependencies: - dependency-name: astral-sh/uv dependency-version: 0.9.8-python3.12-bookworm-slim dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bf352b521..49423d98a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN set -eux \ # Purpose: Installs s6-overlay and rootfs # Comments: # - Don't leave anything extra in here either -FROM ghcr.io/astral-sh/uv:0.9.7-python3.12-bookworm-slim AS s6-overlay-base +FROM ghcr.io/astral-sh/uv:0.9.9-python3.12-bookworm-slim AS s6-overlay-base WORKDIR /usr/src/s6 From 69514d8d70d4fd1e7ca2c68b444e498d60859278 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 14 Nov 2025 15:58:29 -0800 Subject: [PATCH 067/133] Chore: add backoff ro handle 429 Wikimedia requests in tests (#11364) --- src/paperless_mail/tests/test_parsers_live.py | 46 +++++++++++++------ 1 file changed, 32 insertions(+), 14 deletions(-) diff --git a/src/paperless_mail/tests/test_parsers_live.py b/src/paperless_mail/tests/test_parsers_live.py index 2c3ef262a..456cb47d5 100644 --- a/src/paperless_mail/tests/test_parsers_live.py +++ b/src/paperless_mail/tests/test_parsers_live.py @@ -2,6 +2,7 @@ import os import shutil import subprocess import tempfile +import time from pathlib import Path import httpx @@ -53,14 +54,33 @@ class TestUrlCanary: Verify certain URLs are still available so testing is valid still """ - # Wikimedia rejects requests without a browser-like User-Agent header and returns 403. - _WIKIMEDIA_HEADERS = { - "User-Agent": ( - "Mozilla/5.0 (X11; Linux x86_64) " - "AppleWebKit/537.36 (KHTML, like Gecko) " - "Chrome/123.0.0.0 Safari/537.36" - ), - } + @classmethod + def _fetch_wikimedia(cls, url: str) -> httpx.Response: + """ + Wikimedia occasionally throttles automated requests (HTTP 429). Retry a few + times with a short backoff so the tests stay stable, and skip if throttling + persists. + """ + last_resp: httpx.Response | None = None + # Wikimedia rejects requests without a browser-like User-Agent header and returns 403. + headers = { + "User-Agent": ( + "Mozilla/5.0 (X11; Linux x86_64) " + "AppleWebKit/537.36 (KHTML, like Gecko) " + "Chrome/123.0.0.0 Safari/537.36" + ), + } + for delay in (0, 1, 2): + resp = httpx.get(url, headers=headers, timeout=30.0) + if resp.status_code != httpx.codes.TOO_MANY_REQUESTS: + return resp + last_resp = resp + time.sleep(delay) + + pytest.skip( + "Wikimedia throttled the canary request with HTTP 429; try rerunning later.", + ) + return last_resp # pragma: no cover def test_online_image_exception_on_not_available(self): """ @@ -76,11 +96,10 @@ class TestUrlCanary: whether this image stays online forever, so here we check if we can detect if is not available anymore. """ + resp = self._fetch_wikimedia( + "https://upload.wikimedia.org/wikipedia/en/f/f7/nonexistent.png", + ) with pytest.raises(httpx.HTTPStatusError) as exec_info: - resp = httpx.get( - "https://upload.wikimedia.org/wikipedia/en/f/f7/nonexistent.png", - headers=self._WIKIMEDIA_HEADERS, - ) resp.raise_for_status() assert exec_info.value.response.status_code == httpx.codes.NOT_FOUND @@ -100,9 +119,8 @@ class TestUrlCanary: """ # Now check the URL used in samples/sample.html - resp = httpx.get( + resp = self._fetch_wikimedia( "https://upload.wikimedia.org/wikipedia/en/f/f7/RickRoll.png", - headers=self._WIKIMEDIA_HEADERS, ) resp.raise_for_status() From 0d827e85117e5043128abb28fc25400b2b1c9885 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 14 Nov 2025 21:41:07 -0800 Subject: [PATCH 068/133] Documentation: add {{doc_title}} placeholder --- docs/usage.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/usage.md b/docs/usage.md index d902f6814..cac2c964f 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -553,6 +553,7 @@ applied. You can use the following placeholders in the template with any trigger - `{{added_time}}`: added time in HH:MM format - `{{original_filename}}`: original file name without extension - `{{filename}}`: current file name without extension +- `{{doc_title}}`: current document title The following placeholders are only available for "added" or "updated" triggers From fe7419484bc3707f5cd11d5894f1d1b713805a04 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 15 Nov 2025 08:15:18 -0800 Subject: [PATCH 069/133] Chore: Update PR template AI disclosure --- .github/PULL_REQUEST_TEMPLATE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 91996b4d0..c67758bf6 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -35,8 +35,8 @@ NOTE: PRs that do not address the following will not be merged, please do not sk - [ ] I have read & agree with the [contributing guidelines](https://github.com/paperless-ngx/paperless-ngx/blob/main/CONTRIBUTING.md). - [ ] If applicable, I have included testing coverage for new code in this PR, for [backend](https://docs.paperless-ngx.com/development/#testing) and / or [front-end](https://docs.paperless-ngx.com/development/#testing-and-code-style) changes. -- [ ] If applicable, I have tested my code for new features & regressions on both mobile & desktop devices, using the latest version of major browsers. +- [ ] If applicable, I have tested my code for breaking changes & regressions on both mobile & desktop devices, using the latest version of major browsers. - [ ] If applicable, I have checked that all tests pass, see [documentation](https://docs.paperless-ngx.com/development/#back-end-development). - [ ] I have run all `pre-commit` hooks, see [documentation](https://docs.paperless-ngx.com/development/#code-formatting-with-pre-commit-hooks). - [ ] I have made corresponding changes to the documentation as needed. -- [ ] I have checked my modifications for any breaking changes. +- [ ] In the description of the PR above I have disclosed the use of AI tools in the coding of this PR. From 733d2e19a068f84b7d39788b9f940f35b62decaf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Nov 2025 16:32:37 +0000 Subject: [PATCH 070/133] New Crowdin translations by GitHub Action (#11310) --- src-ui/src/locale/messages.af_ZA.xlf | 24 +- src-ui/src/locale/messages.ar_AR.xlf | 24 +- src-ui/src/locale/messages.be_BY.xlf | 24 +- src-ui/src/locale/messages.bg_BG.xlf | 24 +- src-ui/src/locale/messages.ca_ES.xlf | 24 +- src-ui/src/locale/messages.cs_CZ.xlf | 28 +- src-ui/src/locale/messages.da_DK.xlf | 24 +- src-ui/src/locale/messages.de_DE.xlf | 32 +- src-ui/src/locale/messages.el_GR.xlf | 24 +- src-ui/src/locale/messages.es_ES.xlf | 24 +- src-ui/src/locale/messages.et_EE.xlf | 24 +- src-ui/src/locale/messages.fa_IR.xlf | 24 +- src-ui/src/locale/messages.fi_FI.xlf | 24 +- src-ui/src/locale/messages.fr_FR.xlf | 24 +- src-ui/src/locale/messages.he_IL.xlf | 24 +- src-ui/src/locale/messages.hr_HR.xlf | 24 +- src-ui/src/locale/messages.hu_HU.xlf | 24 +- src-ui/src/locale/messages.id_ID.xlf | 24 +- src-ui/src/locale/messages.it_IT.xlf | 82 +- src-ui/src/locale/messages.ja_JP.xlf | 24 +- src-ui/src/locale/messages.ko_KR.xlf | 24 +- src-ui/src/locale/messages.lb_LU.xlf | 24 +- src-ui/src/locale/messages.lt_LT.xlf | 24 +- src-ui/src/locale/messages.lv_LV.xlf | 24 +- src-ui/src/locale/messages.mk_MK.xlf | 11444 +++++++++++++++++++++++ src-ui/src/locale/messages.ms_MY.xlf | 24 +- src-ui/src/locale/messages.nl_NL.xlf | 24 +- src-ui/src/locale/messages.no_NO.xlf | 24 +- src-ui/src/locale/messages.pl_PL.xlf | 28 +- src-ui/src/locale/messages.pt_BR.xlf | 24 +- src-ui/src/locale/messages.pt_PT.xlf | 24 +- src-ui/src/locale/messages.ro_RO.xlf | 24 +- src-ui/src/locale/messages.ru_RU.xlf | 24 +- src-ui/src/locale/messages.sk_SK.xlf | 24 +- src-ui/src/locale/messages.sl_SI.xlf | 28 +- src-ui/src/locale/messages.sr_CS.xlf | 28 +- src-ui/src/locale/messages.sv_SE.xlf | 24 +- src-ui/src/locale/messages.th_TH.xlf | 24 +- src-ui/src/locale/messages.tr_TR.xlf | 24 +- src-ui/src/locale/messages.uk_UA.xlf | 24 +- src-ui/src/locale/messages.vi_VN.xlf | 24 +- src-ui/src/locale/messages.zh_CN.xlf | 24 +- src-ui/src/locale/messages.zh_TW.xlf | 24 +- src/locale/af_ZA/LC_MESSAGES/django.po | 22 +- src/locale/ar_AR/LC_MESSAGES/django.po | 22 +- src/locale/be_BY/LC_MESSAGES/django.po | 22 +- src/locale/bg_BG/LC_MESSAGES/django.po | 22 +- src/locale/ca_ES/LC_MESSAGES/django.po | 22 +- src/locale/cs_CZ/LC_MESSAGES/django.po | 22 +- src/locale/da_DK/LC_MESSAGES/django.po | 22 +- src/locale/de_DE/LC_MESSAGES/django.po | 22 +- src/locale/el_GR/LC_MESSAGES/django.po | 22 +- src/locale/es_ES/LC_MESSAGES/django.po | 22 +- src/locale/et_EE/LC_MESSAGES/django.po | 22 +- src/locale/fa_IR/LC_MESSAGES/django.po | 22 +- src/locale/fi_FI/LC_MESSAGES/django.po | 22 +- src/locale/fr_FR/LC_MESSAGES/django.po | 22 +- src/locale/he_IL/LC_MESSAGES/django.po | 22 +- src/locale/hr_HR/LC_MESSAGES/django.po | 22 +- src/locale/hu_HU/LC_MESSAGES/django.po | 58 +- src/locale/id_ID/LC_MESSAGES/django.po | 22 +- src/locale/it_IT/LC_MESSAGES/django.po | 74 +- src/locale/ja_JP/LC_MESSAGES/django.po | 22 +- src/locale/ko_KR/LC_MESSAGES/django.po | 22 +- src/locale/lb_LU/LC_MESSAGES/django.po | 22 +- src/locale/lt_LT/LC_MESSAGES/django.po | 22 +- src/locale/lv_LV/LC_MESSAGES/django.po | 22 +- src/locale/mk_MK/LC_MESSAGES/django.po | 2154 +++++ src/locale/ms_MY/LC_MESSAGES/django.po | 22 +- src/locale/nl_NL/LC_MESSAGES/django.po | 22 +- src/locale/no_NO/LC_MESSAGES/django.po | 22 +- src/locale/pl_PL/LC_MESSAGES/django.po | 52 +- src/locale/pt_BR/LC_MESSAGES/django.po | 22 +- src/locale/pt_PT/LC_MESSAGES/django.po | 22 +- src/locale/ro_RO/LC_MESSAGES/django.po | 22 +- src/locale/ru_RU/LC_MESSAGES/django.po | 22 +- src/locale/sk_SK/LC_MESSAGES/django.po | 22 +- src/locale/sl_SI/LC_MESSAGES/django.po | 22 +- src/locale/sr_CS/LC_MESSAGES/django.po | 22 +- src/locale/sv_SE/LC_MESSAGES/django.po | 22 +- src/locale/th_TH/LC_MESSAGES/django.po | 22 +- src/locale/tr_TR/LC_MESSAGES/django.po | 22 +- src/locale/uk_UA/LC_MESSAGES/django.po | 22 +- src/locale/vi_VN/LC_MESSAGES/django.po | 38 +- src/locale/zh_CN/LC_MESSAGES/django.po | 22 +- src/locale/zh_TW/LC_MESSAGES/django.po | 22 +- 86 files changed, 14672 insertions(+), 1074 deletions(-) create mode 100644 src-ui/src/locale/messages.mk_MK.xlf create mode 100644 src/locale/mk_MK/LC_MESSAGES/django.po diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf index 4e85b7bb9..0bc9fced5 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Wagwoord is verander, u sal vir nn oomblik afgeteken word. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index 51d6b1cc8..83620d77a 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 تم تغيير كلمة المرور ، سيتم تسجيل خروجك مؤقتاً. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 تم تحديث الملف الشخصي بنجاح @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 خطأ أثناء حفظ الملف الشخصي @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 خطأ أثناء إنشاء رمز المصادقة @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 خطأ أثناء قطع الاتصال بحساب الشبكة الاجتماعية @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index cf2df56a9..21638825e 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf index f48766554..94ce051ab 100644 --- a/src-ui/src/locale/messages.bg_BG.xlf +++ b/src-ui/src/locale/messages.bg_BG.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Паролата е променена, ще излезете моментално. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Профила е актуализиран успешно @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Грешка при запазването на профила @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Грешка при генериране на auth токен @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Грешка при прекъсване на връзката със социалния акаунт @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Грешка при извличане на настройките за TOTP @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP е активиран успешно @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Грешка при активирането на TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP е деактивиран успешно @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Грешка при деактивирането на TOTP diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index 1728f9e3c..492ecc9b7 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Contrasenya desada, es tancarà la sessió momentàniament. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Perfil actualitzat corrcetament @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error desant perfil @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generant auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error desconnectant compte social @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error obtenint les opcions TOTP @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activat correctament @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activant TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP desactivat correctament @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error desactivant TOTP diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index a1102aa48..d47817703 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -764,7 +764,7 @@ src/app/components/admin/logs/logs.component.html 17 - lines + řádky Auto refresh @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Heslo bylo změněno, za chvíli budete odhlášeni. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil úspěšně aktualizován @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Chyba při ukládání profilu @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Chyba při generování ověřovacího tokenu @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Chyba při odpojování účtu sociální sítě @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Chyba při získávání nastavení TOTP @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP úspěšně aktivováno @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Chyba při aktivaci TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP úspěšně deaktivováno @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Chyba při deaktivaci TOTP @@ -8699,7 +8699,7 @@ src/app/components/document-list/document-list.component.html 18 - Select: + Vybrat: None diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index c22f03785..ced3c51a0 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index ff14fdc8b..a43edd5d3 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -758,13 +758,13 @@ Anzeigen - + lines src/app/components/admin/logs/logs.component.html 17 - Zeilen + Zeilen Auto refresh @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Das Kennwort wurde geändert, Sie werden nun abgemeldet. @@ -5734,13 +5734,13 @@ Arbeitsablauf bearbeiten - + {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}} src/app/components/common/email-document-dialog/email-document-dialog.component.html 2,6 - {VAR_PLURAL, plural, =1 {Dokument mailen} other { Dokumente mailen}} + {VAR_PLURAL, plural, =1 {Dokument mailen} other { Dokumente mailen}} Email address(es) @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil erfolgreich aktualisiert @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Fehler beim Speichern des Profils @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Fehler beim Generieren des Authentifizierungstokens @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Fehler beim Trennen des Drittanbieterkontos @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Fehler beim Abrufen der TOTP-Einstellungen @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP erfolgreich aktiviert @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Fehler beim Aktivieren von TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP erfolgreich deaktiviert @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Fehler beim Deaktivieren von TOTP diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf index 48c78bc6b..36e3737d9 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Ο κωδικός πρόσβασης έχει αλλάξει, θα αποσυνδεθείτε αμέσως. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index c97136cb5..e0d4e07b9 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 La contraseña ha sido cambiada, tu sesión será cerrada en un momento. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Perfil actualizado correctamente @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error al guardar el perfil @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generando token de autenticación @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error al desconectar la cuenta de red social @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error obteniendo ajustes TOTP @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activado correctamente @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activando TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP desactivado correctamente @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error desactivando TOTP diff --git a/src-ui/src/locale/messages.et_EE.xlf b/src-ui/src/locale/messages.et_EE.xlf index 3540ec928..498a30ef2 100644 --- a/src-ui/src/locale/messages.et_EE.xlf +++ b/src-ui/src/locale/messages.et_EE.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.fa_IR.xlf b/src-ui/src/locale/messages.fa_IR.xlf index c703ce79b..8e8361bfa 100644 --- a/src-ui/src/locale/messages.fa_IR.xlf +++ b/src-ui/src/locale/messages.fa_IR.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 رمز عبور تغییر کرده است ، شما لحظه به لحظه از سیستم خارج می شوید. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 پروفایل با موفقیت به روز شد @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 نمایه ذخیره خطا @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 خطای ایجاد کننده AUTH @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 قطع خطا حساب اجتماعی @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 خطا در تنظیمات TOTP @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP با موفقیت فعال شد @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 خطا در فعال کردن TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP با موفقیت غیرفعال شد @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 خطای غیرفعال کردن TOTP diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index 9075d6e51..0cf0b9de4 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Salasana on vaihdettu, sinut kirjataan ulos hetken kuluttua. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profiili päivitetty onnistuneesti @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Virhe profiilia tallentaessa @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Virhe yhteyttä sosiaaliseen tiliin katkaistaessa @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 747698b7d..93b0d4b96 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Le mot de passe a été modifié, vous serez déconnecté momentanément. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil mis à jour avec succès @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Erreur lors de l'enregistrement du profil @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Erreur lors de la génération du jeton d'authentification @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Erreur lors de la déconnexion du compte social @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Erreur lors de la récupération des paramètres du TOTP @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activé avec succès @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Erreur lors de l’activation du TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP désactivé avec succès @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Erreur lors de la désactivation du TOTP diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index 06c337485..feba8cfbe 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 הסיסמה השתנתה. אתה תנותק מהמערכת בתוך זמן קצר @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 פרופיל עודכן בהצלחה @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 שגיאה בשמירת פרופיל @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 שגיאה ביצירת אסימון אימות @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 שגיאה בניתוק חשבון חברתי @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 שגיאה באחזור הגדרות TOTP @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP הופעל בהצלחה @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 שגיאה בהפעלת TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP הושבת בהצלחה @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 שגיאה בהשבתת TOTP diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index 093b08bee..f5329341e 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index c08a74e95..11a7663af 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 A jelszó megváltozott, Önt kiléptetjük a rendszerből. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil frissítése sikeresen megtörtént @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Hiba a profil mentésekor @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Hiba az auth token létrehozásakor @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Hiba a közösségi fiók szétkapcsolásakor @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Hiba a TOTP beállítások lekérésekor @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP aktiválása sikeres @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Sikertelen TOTP aktiválás @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deaktiválása sikeres @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Sikertelen TOTP deaktiválás diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf index cf6db149e..ba1a70a96 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Kata sandi telah diubah, anda akan dikeluarkan sesaat lagi. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil berhasil diperbarui @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Kesalahan saat menyimpan profil @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Kesalahan saat membuat token autentikasi @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Kesalahan saat melepaskan akun sosial @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Gagal mengambil pengaturan TOTP @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP berhasil diaktifkan @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Gagal mengaktifkan TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP berhasil dinonaktifkan @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Gagal menonaktifkan TOTP diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index ac8918219..c79e07224 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -764,7 +764,7 @@ src/app/components/admin/logs/logs.component.html 17 - lines + righe Auto refresh @@ -2148,7 +2148,7 @@ src/app/components/admin/tasks/tasks.component.ts 161 - Error dismissing tasks + Errore nel rimuovere l'attività Error dismissing task @@ -2156,7 +2156,7 @@ src/app/components/admin/tasks/tasks.component.ts 170 - Error dismissing task + Errore nel rimuovere le attività queued @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 La password è stata cambiata, sarai disconnesso momentaneamente. @@ -4816,7 +4816,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 15 - Parent + Parent Inbox tag @@ -5240,7 +5240,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 183 - Advanced Filters + Filtri Avanzati Add filter @@ -5248,7 +5248,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 190 - Add filter + Aggiungi filtro No advanced workflow filters defined. @@ -5256,7 +5256,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 195 - No advanced workflow filters defined. + Nessun filtro avanzato del workflow definito. Complete the custom field query configuration. @@ -5264,7 +5264,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 224,226 - Complete the custom field query configuration. + Completa la configurazione della query di campo personalizzato. Action type @@ -5644,7 +5644,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 203 - Has any of these tags + Ha qualcuna di queste etichette Has all of these tags @@ -5652,7 +5652,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 210 - Has all of these tags + Ha tutte queste etichette Does not have these tags @@ -5660,7 +5660,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 217 - Does not have these tags + Non ha queste etichette Has correspondent @@ -5676,7 +5676,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 232 - Does not have correspondents + Non ha corrispondenti Has document type @@ -5692,7 +5692,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 248 - Does not have document types + Non ha questi tipi di documento Has storage path @@ -5700,7 +5700,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 256 - Has storage path + Ha percorso di archiviazione Does not have storage paths @@ -5708,7 +5708,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 264 - Does not have storage paths + Non ha percorso di archiviazione Matches custom field query @@ -5716,7 +5716,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 272 - Matches custom field query + Corrisponde a campo personalizzato Create new workflow @@ -5792,7 +5792,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.html 37 - Some email servers may reject messages with large attachments. + Alcuni server di posta elettronica possono rifiutare messaggi con allegati di grandi dimensioni. Email sent @@ -5808,7 +5808,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.ts 69 - Error emailing documents + Errore durante l'invio dei documenti Error emailing document @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profilo aggiornato con successo @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Errore durante il salvataggio del profilo @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Errore nella generazione del token di autenticazione @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Errore disconnessione account social @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Errore nel recupero delle impostazioni TOTP @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP attivato con successo @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Errore nell'attivazione del TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP disattivato con successo @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Errore nella disattivazione del TOTP @@ -7062,7 +7062,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 261 - OK + Ok Copy Raw Error @@ -7444,7 +7444,7 @@ src/app/components/document-detail/document-detail.component.html 58 - Print + Stampa More like this @@ -8032,7 +8032,7 @@ src/app/components/document-detail/document-detail.component.ts 1460 - Print failed. + Stampa non riuscita. Error loading document for printing. @@ -8040,7 +8040,7 @@ src/app/components/document-detail/document-detail.component.ts 1472 - Error loading document for printing. + Errore nel caricamento del documento per la stampa. An error occurred loading tiff: @@ -8699,7 +8699,7 @@ src/app/components/document-list/document-list.component.html 18 - Select: + Seleziona: None @@ -9591,7 +9591,7 @@ src/app/components/manage/mail/mail.component.html 143 - View Processed Mail + Visualizza Email Elaborata No mail rules defined. @@ -9803,7 +9803,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 20 - No processed email messages found. + Nessun messaggio email elaborato trovato. Received @@ -9811,7 +9811,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 33 - Received + Ricevuto Processed @@ -9819,7 +9819,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 34 - Processed + Elaborato Processed mail(s) deleted @@ -9827,7 +9827,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts 72 - Processed mail(s) deleted + Email processate cancellate Filter by: @@ -10399,7 +10399,7 @@ src/app/data/custom-field.ts 55 - Long Text + Testo Lungo Search score diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf index 3edc2a4a9..c7f305d58 100644 --- a/src-ui/src/locale/messages.ja_JP.xlf +++ b/src-ui/src/locale/messages.ja_JP.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 パスワードが変更されました。一時的にログアウトされます。 @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 プロフィールは正常に更新されました @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 プロフィールの保存に失敗しました @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 認証トークンの生成に失敗しました @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 ソーシャルアカウントの接続解除に失敗しました @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 TOTP設定の取得中にエラーが発生しました @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTPが正常に有効になりました @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 TOTPの有効化に失敗しました @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTPを無効にしました @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 TOTPの無効化に失敗しました diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf index cdf1d8696..89df9bf93 100644 --- a/src-ui/src/locale/messages.ko_KR.xlf +++ b/src-ui/src/locale/messages.ko_KR.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 비밀번호가 변경되었습니다. 곧 로그아웃됩니다. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 프로필 업데이트 성공 @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 프로필을 저장하는 중 오류가 발생하였습니다 @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 인증 토큰을 생성하는 중 오류가 발생하였습니다 @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 소셜 계정 연결 해제 @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 TOTP 설정 가져오기 오류 @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP가 성공적으로 활성화되었습니다. @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 TOTP 활성화 오류 @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP가 성공적으로 비활성화되었습니다. @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 TOTP 비활성화 오류 diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index 0a7d1db8a..edb8c7a27 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 D’Passwuert gouf geännert, Dir gitt elo ofgemellt. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.lt_LT.xlf b/src-ui/src/locale/messages.lt_LT.xlf index 709f826ab..62833f466 100644 --- a/src-ui/src/locale/messages.lt_LT.xlf +++ b/src-ui/src/locale/messages.lt_LT.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf index 993cf0b42..ff9edccae 100644 --- a/src-ui/src/locale/messages.lv_LV.xlf +++ b/src-ui/src/locale/messages.lv_LV.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profils tika sekmīgi atjaunināts @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.mk_MK.xlf b/src-ui/src/locale/messages.mk_MK.xlf new file mode 100644 index 000000000..ebaf7ae61 --- /dev/null +++ b/src-ui/src/locale/messages.mk_MK.xlf @@ -0,0 +1,11444 @@ + + + + + + Close + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + 50 + + Close + + + Slide of + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + 131,135 + + Currently selected slide number read by screen reader + Slide of + + + Previous + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + 157,159 + + Previous + + + Next + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + 198 + + Next + + + Previous month + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + 83,85 + + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + 112 + + Previous month + + + Next month + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + 112 + + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + 112 + + Next month + + + HH + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + HH + + + Close + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + Close + + + Select month + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + Select month + + + «« + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + «« + + + Hours + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + Hours + + + « + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + « + + + MM + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + MM + + + » + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + » + + + Select year + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + Select year + + + Minutes + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + Minutes + + + »» + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + »» + + + First + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + First + + + Increment hours + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + Increment hours + + + Previous + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + Previous + + + Decrement hours + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + Decrement hours + + + Next + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + Next + + + Increment minutes + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + Increment minutes + + + Last + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + Last + + + Decrement minutes + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + Decrement minutes + + + SS + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + SS + + + Seconds + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + Seconds + + + Increment seconds + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + Increment seconds + + + Decrement seconds + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + Decrement seconds + + + + + + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + 13 + + + + + + + + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + 41,42 + + + + + Document was added to Paperless-ngx. + + src/app/app.component.ts + 95 + + + src/app/app.component.ts + 104 + + Document was added to Paperless-ngx. + + + Open document + + src/app/app.component.ts + 97 + + + src/app/components/admin/trash/trash.component.ts + 146 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 44 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 50 + + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 58 + + Open document + + + Could not add : + + src/app/app.component.ts + 119 + + Could not add : + + + Document is being processed by Paperless-ngx. + + src/app/app.component.ts + 134 + + Document is being processed by Paperless-ngx. + + + Dashboard + + src/app/app.component.ts + 141 + + + src/app/components/app-frame/app-frame.component.html + 84 + + + src/app/components/app-frame/app-frame.component.html + 86 + + + src/app/components/dashboard/dashboard.component.html + 1 + + Dashboard + + + Documents + + src/app/app.component.ts + 152 + + + src/app/components/app-frame/app-frame.component.html + 91 + + + src/app/components/app-frame/app-frame.component.html + 93 + + + src/app/components/document-list/document-list.component.ts + 192 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 61 + + + src/app/components/manage/management-list/management-list.component.html + 133 + + + src/app/components/manage/management-list/management-list.component.html + 133 + + + src/app/components/manage/management-list/management-list.component.html + 133 + + + src/app/components/manage/management-list/management-list.component.html + 133 + + Documents + + + Settings + + src/app/app.component.ts + 164 + + + src/app/components/admin/settings/settings.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 51 + + + src/app/components/app-frame/app-frame.component.html + 255 + + + src/app/components/app-frame/app-frame.component.html + 257 + + Settings + + + Prev + + src/app/app.component.ts + 170 + + Prev + + + Next + + src/app/app.component.ts + 171 + + + src/app/components/document-detail/document-detail.component.html + 113 + + Next + + + End + + src/app/app.component.ts + 172 + + End + + + The dashboard can be used to show saved views, such as an 'Inbox'. Views are found under Manage > Saved Views once you have created some. + + src/app/app.component.ts + 178 + + The dashboard can be used to show saved views, such as an 'Inbox'. Views are found under Manage > Saved Views once you have created some. + + + Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms. + + src/app/app.component.ts + 185 + + Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms. + + + The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. + + src/app/app.component.ts + 190 + + The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. + + + The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. + + src/app/app.component.ts + 197 + + The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. + + + Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. + + src/app/app.component.ts + 203 + + Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. + + + Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. + + src/app/app.component.ts + 208 + + Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. + + + Manage e-mail accounts and rules for automatically importing documents. + + src/app/app.component.ts + 216 + + + src/app/components/manage/mail/mail.component.html + 4 + + Manage e-mail accounts and rules for automatically importing documents. + + + Workflows give you more control over the document pipeline. + + src/app/app.component.ts + 224 + + Workflows give you more control over the document pipeline. + + + File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. + + src/app/app.component.ts + 232 + + + src/app/components/admin/tasks/tasks.component.html + 4 + + File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. + + + Check out the settings for various tweaks to the web app. + + src/app/app.component.ts + 240 + + Check out the settings for various tweaks to the web app. + + + Thank you! 🙏 + + src/app/app.component.ts + 248 + + Thank you! 🙏 + + + There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. + + src/app/app.component.ts + 250 + + There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. + + + Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + src/app/app.component.ts + 252 + + Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + + Application Configuration + + src/app/components/admin/config/config.component.html + 2 + + Application Configuration + + + Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence. + + src/app/components/admin/config/config.component.html + 4 + + Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence. + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 25 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 34 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 123 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 53 + + + src/app/components/document-detail/document-detail.component.html + 374 + + Discard + + + Save + + src/app/components/admin/config/config.component.html + 56 + + + src/app/components/admin/settings/settings.component.html + 362 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 52 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 20 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 40 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 76 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 77 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 31 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 57 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 183 + + + src/app/components/document-detail/document-detail.component.html + 367 + + + src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html + 83 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + + src/app/components/manage/saved-views/saved-views.component.html + 74 + + Save + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 103 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 129 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 173 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 178 + + An error occurred updating configuration + + + File successfully updated + + src/app/components/admin/config/config.component.ts + 200 + + File successfully updated + + + An error occurred uploading file + + src/app/components/admin/config/config.component.ts + 205 + + An error occurred uploading file + + + Logs + + src/app/components/admin/logs/logs.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 290 + + + src/app/components/app-frame/app-frame.component.html + 293 + + Logs + + + Review the log files for the application and for email checking. + + src/app/components/admin/logs/logs.component.html + 4 + + Review the log files for the application and for email checking. + + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + + + Auto refresh + + src/app/components/admin/logs/logs.component.html + 21 + + + src/app/components/admin/tasks/tasks.component.html + 41 + + Auto refresh + + + Loading... + + src/app/components/admin/logs/logs.component.html + 38 + + + src/app/components/admin/logs/logs.component.html + 53 + + + src/app/components/admin/tasks/tasks.component.html + 48 + + + src/app/components/admin/trash/trash.component.html + 45 + + + src/app/components/admin/users-groups/users-groups.component.html + 92 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 50 + + + src/app/components/common/input/document-link/document-link.component.html + 58 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 23 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 110 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 126 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 10 + + + src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html + 18 + + + src/app/components/document-detail/document-detail.component.html + 387 + + + src/app/components/document-list/document-list.component.html + 134 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 26 + + + src/app/components/manage/mail/mail.component.html + 40 + + + src/app/components/manage/mail/mail.component.html + 123 + + + src/app/components/manage/mail/mail.component.html + 192 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 16 + + + src/app/components/manage/management-list/management-list.component.html + 52 + + + src/app/components/manage/management-list/management-list.component.html + 52 + + + src/app/components/manage/management-list/management-list.component.html + 52 + + + src/app/components/manage/management-list/management-list.component.html + 52 + + + src/app/components/manage/saved-views/saved-views.component.html + 68 + + + src/app/components/manage/workflows/workflows.component.html + 28 + + Loading... + + + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. + + src/app/components/admin/settings/settings.component.html + 4 + + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. + + + Start tour + + src/app/components/admin/settings/settings.component.html + 8 + + Start tour + + + System Status + + src/app/components/admin/settings/settings.component.html + 27 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 2 + + System Status + + + Open Django Admin + + src/app/components/admin/settings/settings.component.html + 30 + + Open Django Admin + + + General + + src/app/components/admin/settings/settings.component.html + 40 + + General + + + Appearance + + src/app/components/admin/settings/settings.component.html + 44 + + Appearance + + + Display language + + src/app/components/admin/settings/settings.component.html + 47 + + Display language + + + You need to reload the page after applying a new language. + + src/app/components/admin/settings/settings.component.html + 60 + + You need to reload the page after applying a new language. + + + Date display + + src/app/components/admin/settings/settings.component.html + 68 + + Date display + + + Date format + + src/app/components/admin/settings/settings.component.html + 85 + + Date format + + + Short: + + src/app/components/admin/settings/settings.component.html + 91,92 + + Short: + + + Medium: + + src/app/components/admin/settings/settings.component.html + 95,96 + + Medium: + + + Long: + + src/app/components/admin/settings/settings.component.html + 99,100 + + Long: + + + Items per page + + src/app/components/admin/settings/settings.component.html + 107 + + Items per page + + + Sidebar + + src/app/components/admin/settings/settings.component.html + 123 + + Sidebar + + + Use 'slim' sidebar (icons only) + + src/app/components/admin/settings/settings.component.html + 127 + + Use 'slim' sidebar (icons only) + + + Dark mode + + src/app/components/admin/settings/settings.component.html + 134 + + Dark mode + + + Use system settings + + src/app/components/admin/settings/settings.component.html + 137 + + Use system settings + + + Enable dark mode + + src/app/components/admin/settings/settings.component.html + 138 + + Enable dark mode + + + Invert thumbnails in dark mode + + src/app/components/admin/settings/settings.component.html + 139 + + Invert thumbnails in dark mode + + + Theme Color + + src/app/components/admin/settings/settings.component.html + 145 + + Theme Color + + + Reset + + src/app/components/admin/settings/settings.component.html + 152 + + Reset + + + Update checking + + src/app/components/admin/settings/settings.component.html + 157 + + Update checking + + + Enable update checking + + src/app/components/admin/settings/settings.component.html + 160 + + Enable update checking + + + What's this? + + src/app/components/admin/settings/settings.component.html + 161 + + + src/app/components/common/page-header/page-header.component.html + 9 + + + src/app/components/common/permissions-select/permissions-select.component.html + 4 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 3 + + What's this? + + + Update checking works by pinging the public GitHub API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + src/app/components/admin/settings/settings.component.html + 165,167 + + Update checking works by pinging the public GitHub API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + + No tracking data is collected by the app in any way. + + src/app/components/admin/settings/settings.component.html + 169 + + No tracking data is collected by the app in any way. + + + Saved Views + + src/app/components/admin/settings/settings.component.html + 175 + + + src/app/components/app-frame/app-frame.component.html + 215 + + + src/app/components/app-frame/app-frame.component.html + 217 + + + src/app/components/manage/saved-views/saved-views.component.html + 2 + + Saved Views + + + Show warning when closing saved views with unsaved changes + + src/app/components/admin/settings/settings.component.html + 178 + + Show warning when closing saved views with unsaved changes + + + Show document counts in sidebar saved views + + src/app/components/admin/settings/settings.component.html + 179 + + Show document counts in sidebar saved views + + + Document editing + + src/app/components/admin/settings/settings.component.html + 185 + + Document editing + + + Use PDF viewer provided by the browser + + src/app/components/admin/settings/settings.component.html + 189 + + Use PDF viewer provided by the browser + + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + src/app/components/admin/settings/settings.component.html + 189 + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + + Default zoom + + src/app/components/admin/settings/settings.component.html + 195 + + Default zoom + + + Fit width + + src/app/components/admin/settings/settings.component.html + 199 + + Fit width + + + Fit page + + src/app/components/admin/settings/settings.component.html + 200 + + Fit page + + + Only applies to the Paperless-ngx PDF viewer. + + src/app/components/admin/settings/settings.component.html + 202 + + Only applies to the Paperless-ngx PDF viewer. + + + Automatically remove inbox tag(s) on save + + src/app/components/admin/settings/settings.component.html + 208 + + Automatically remove inbox tag(s) on save + + + Show document thumbnail during loading + + src/app/components/admin/settings/settings.component.html + 214 + + Show document thumbnail during loading + + + Global search + + src/app/components/admin/settings/settings.component.html + 218 + + + src/app/components/app-frame/global-search/global-search.component.ts + 122 + + Global search + + + Do not include advanced search results + + src/app/components/admin/settings/settings.component.html + 221 + + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 227 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 231 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 232 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 192 + + Advanced search + + + Bulk editing + + src/app/components/admin/settings/settings.component.html + 237 + + Bulk editing + + + Show confirmation dialogs + + src/app/components/admin/settings/settings.component.html + 240 + + Show confirmation dialogs + + + Apply on close + + src/app/components/admin/settings/settings.component.html + 241 + + Apply on close + + + Notes + + src/app/components/admin/settings/settings.component.html + 245 + + + src/app/components/document-list/document-list.component.html + 242 + + + src/app/data/document.ts + 58 + + + src/app/data/document.ts + 95 + + Notes + + + Enable notes + + src/app/components/admin/settings/settings.component.html + 248 + + Enable notes + + + Permissions + + src/app/components/admin/settings/settings.component.html + 259 + + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 14 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 51 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 2 + + + src/app/components/document-detail/document-detail.component.html + 343 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 78 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 101 + + + src/app/components/manage/mail/mail.component.html + 66 + + + src/app/components/manage/mail/mail.component.html + 78 + + + src/app/components/manage/mail/mail.component.html + 154 + + + src/app/components/manage/mail/mail.component.html + 166 + + + src/app/components/manage/management-list/management-list.component.html + 7 + + + src/app/components/manage/management-list/management-list.component.html + 7 + + + src/app/components/manage/management-list/management-list.component.html + 7 + + + src/app/components/manage/management-list/management-list.component.html + 7 + + Permissions + + + Default Permissions + + src/app/components/admin/settings/settings.component.html + 262 + + Default Permissions + + + Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. + + src/app/components/admin/settings/settings.component.html + 266,268 + + Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. + + + Default Owner + + src/app/components/admin/settings/settings.component.html + 273 + + Default Owner + + + Objects without an owner can be viewed and edited by all users + + src/app/components/admin/settings/settings.component.html + 277 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 32 + + Objects without an owner can be viewed and edited by all users + + + Default View Permissions + + src/app/components/admin/settings/settings.component.html + 282 + + Default View Permissions + + + Users: + + src/app/components/admin/settings/settings.component.html + 287 + + + src/app/components/admin/settings/settings.component.html + 314 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 278 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 297 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 364 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 383 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 38 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 57 + + Users: + + + Groups: + + src/app/components/admin/settings/settings.component.html + 297 + + + src/app/components/admin/settings/settings.component.html + 324 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 286 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 305 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 372 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 391 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 46 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 65 + + Groups: + + + Default Edit Permissions + + src/app/components/admin/settings/settings.component.html + 309 + + Default Edit Permissions + + + Edit permissions also grant viewing permissions + + src/app/components/admin/settings/settings.component.html + 333 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 311 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 397 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 71 + + Edit permissions also grant viewing permissions + + + Notifications + + src/app/components/admin/settings/settings.component.html + 341 + + + src/app/components/app-frame/toasts-dropdown/toasts-dropdown.component.html + 11 + + Notifications + + + Document processing + + src/app/components/admin/settings/settings.component.html + 344 + + Document processing + + + Show notifications when new documents are detected + + src/app/components/admin/settings/settings.component.html + 348 + + Show notifications when new documents are detected + + + Show notifications when document processing completes successfully + + src/app/components/admin/settings/settings.component.html + 349 + + Show notifications when document processing completes successfully + + + Show notifications when document processing fails + + src/app/components/admin/settings/settings.component.html + 350 + + Show notifications when document processing fails + + + Suppress notifications on dashboard + + src/app/components/admin/settings/settings.component.html + 351 + + Suppress notifications on dashboard + + + This will suppress all messages about document processing status on the dashboard. + + src/app/components/admin/settings/settings.component.html + 351 + + This will suppress all messages about document processing status on the dashboard. + + + Cancel + + src/app/components/admin/settings/settings.component.html + 361 + + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 48 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 51 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 19 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 39 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 75 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 76 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 30 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 56 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 115 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 25 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 182 + + + src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html + 81 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 20 + + + src/app/components/manage/saved-views/saved-views.component.html + 73 + + Cancel + + + Use system language + + src/app/components/admin/settings/settings.component.ts + 78 + + Use system language + + + Use date format of display language + + src/app/components/admin/settings/settings.component.ts + 81 + + Use date format of display language + + + Error retrieving users + + src/app/components/admin/settings/settings.component.ts + 226 + + + src/app/components/admin/users-groups/users-groups.component.ts + 75 + + Error retrieving users + + + Error retrieving groups + + src/app/components/admin/settings/settings.component.ts + 245 + + + src/app/components/admin/users-groups/users-groups.component.ts + 89 + + Error retrieving groups + + + Settings were saved successfully. + + src/app/components/admin/settings/settings.component.ts + 548 + + Settings were saved successfully. + + + Settings were saved successfully. Reload is required to apply some changes. + + src/app/components/admin/settings/settings.component.ts + 552 + + Settings were saved successfully. Reload is required to apply some changes. + + + Reload now + + src/app/components/admin/settings/settings.component.ts + 553 + + Reload now + + + An error occurred while saving settings. + + src/app/components/admin/settings/settings.component.ts + 563 + + + src/app/components/app-frame/app-frame.component.ts + 180 + + An error occurred while saving settings. + + + File Tasks + + src/app/components/admin/tasks/tasks.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 278 + + + src/app/components/app-frame/app-frame.component.html + 280 + + File Tasks + + + Clear selection + + src/app/components/admin/tasks/tasks.component.html + 9 + + + src/app/components/admin/trash/trash.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 153 + + + src/app/components/manage/management-list/management-list.component.html + 4 + + + src/app/components/manage/management-list/management-list.component.html + 4 + + + src/app/components/manage/management-list/management-list.component.html + 4 + + + src/app/components/manage/management-list/management-list.component.html + 4 + + Clear selection + + + Filter by + + src/app/components/admin/tasks/tasks.component.html + 16 + + Filter by + + + Name + + src/app/components/admin/tasks/tasks.component.html + 61 + + + src/app/components/admin/tasks/tasks.component.ts + 45 + + + src/app/components/admin/trash/trash.component.html + 35 + + + src/app/components/admin/users-groups/users-groups.component.html + 21 + + + src/app/components/admin/users-groups/users-groups.component.html + 58 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 12 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 11 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 13 + + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 13 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 13 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 13 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 12 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 11 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 17 + + + src/app/components/manage/mail/mail.component.html + 30 + + + src/app/components/manage/mail/mail.component.html + 111 + + + src/app/components/manage/management-list/management-list.component.html + 21 + + + src/app/components/manage/management-list/management-list.component.html + 21 + + + src/app/components/manage/management-list/management-list.component.html + 21 + + + src/app/components/manage/management-list/management-list.component.html + 21 + + + src/app/components/manage/management-list/management-list.component.html + 38 + + + src/app/components/manage/management-list/management-list.component.html + 38 + + + src/app/components/manage/management-list/management-list.component.html + 38 + + + src/app/components/manage/management-list/management-list.component.html + 38 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Name + + + Created + + src/app/components/admin/tasks/tasks.component.html + 62 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 8 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 94 + + + src/app/components/document-list/document-list.component.html + 269 + + + src/app/data/document.ts + 34 + + + src/app/data/document.ts + 92 + + Created + + + Results + + src/app/components/admin/tasks/tasks.component.html + 64 + + Results + + + Info + + src/app/components/admin/tasks/tasks.component.html + 66 + + Info + + + Actions + + src/app/components/admin/tasks/tasks.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 37 + + + src/app/components/admin/users-groups/users-groups.component.html + 23 + + + src/app/components/admin/users-groups/users-groups.component.html + 61 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 67 + + + src/app/components/document-detail/document-detail.component.html + 50 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 87 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 19 + + + src/app/components/manage/mail/mail.component.html + 33 + + + src/app/components/manage/mail/mail.component.html + 116 + + + src/app/components/manage/management-list/management-list.component.html + 44 + + + src/app/components/manage/management-list/management-list.component.html + 44 + + + src/app/components/manage/management-list/management-list.component.html + 44 + + + src/app/components/manage/management-list/management-list.component.html + 44 + + + src/app/components/manage/saved-views/saved-views.component.html + 28 + + + src/app/components/manage/workflows/workflows.component.html + 21 + + Actions + + + click for full output + + src/app/components/admin/tasks/tasks.component.html + 97 + + click for full output + + + Dismiss + + src/app/components/admin/tasks/tasks.component.html + 110 + + + src/app/components/admin/tasks/tasks.component.ts + 155 + + Dismiss + + + Open Document + + src/app/components/admin/tasks/tasks.component.html + 115 + + Open Document + + + {VAR_PLURAL, plural, =1 {One task} other { total tasks}} + + src/app/components/admin/tasks/tasks.component.html + 134 + + {VAR_PLURAL, plural, =1 {One task} other { total tasks}} + + +  ( selected) + + src/app/components/admin/tasks/tasks.component.html + 136 + +  ( selected) + + + Failed + + src/app/components/admin/tasks/tasks.component.html + 148,150 + + Failed + + + Complete + + src/app/components/admin/tasks/tasks.component.html + 156,158 + + Complete + + + Started + + src/app/components/admin/tasks/tasks.component.html + 164,166 + + Started + + + Queued + + src/app/components/admin/tasks/tasks.component.html + 172,174 + + Queued + + + Result + + src/app/components/admin/tasks/tasks.component.ts + 46 + + Result + + + Dismiss selected + + src/app/components/admin/tasks/tasks.component.ts + 110 + + Dismiss selected + + + Dismiss all + + src/app/components/admin/tasks/tasks.component.ts + 111 + + Dismiss all + + + Confirm Dismiss All + + src/app/components/admin/tasks/tasks.component.ts + 152 + + Confirm Dismiss All + + + Dismiss all tasks? + + src/app/components/admin/tasks/tasks.component.ts + 153 + + Dismiss all tasks? + + + Error dismissing tasks + + src/app/components/admin/tasks/tasks.component.ts + 161 + + Error dismissing tasks + + + Error dismissing task + + src/app/components/admin/tasks/tasks.component.ts + 170 + + Error dismissing task + + + queued + + src/app/components/admin/tasks/tasks.component.ts + 246 + + queued + + + started + + src/app/components/admin/tasks/tasks.component.ts + 248 + + started + + + completed + + src/app/components/admin/tasks/tasks.component.ts + 250 + + completed + + + failed + + src/app/components/admin/tasks/tasks.component.ts + 252 + + failed + + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 238 + + + src/app/components/app-frame/app-frame.component.html + 241 + + Trash + + + Manage trashed documents that are pending deletion. + + src/app/components/admin/trash/trash.component.html + 4 + + Manage trashed documents that are pending deletion. + + + Restore selected + + src/app/components/admin/trash/trash.component.html + 11 + + Restore selected + + + Delete selected + + src/app/components/admin/trash/trash.component.html + 14 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 87 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 89 + + Delete selected + + + Empty trash + + src/app/components/admin/trash/trash.component.html + 17 + + Empty trash + + + Remaining + + src/app/components/admin/trash/trash.component.html + 36 + + Remaining + + + days + + src/app/components/admin/trash/trash.component.html + 63 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 71 + + + src/app/components/admin/trash/trash.component.html + 78 + + Restore + + + Delete + + src/app/components/admin/trash/trash.component.html + 72 + + + src/app/components/admin/trash/trash.component.html + 81 + + + src/app/components/admin/trash/trash.component.ts + 82 + + + src/app/components/admin/trash/trash.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.html + 38 + + + src/app/components/admin/users-groups/users-groups.component.html + 76 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 87 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 45 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 89 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 242 + + + src/app/components/common/permissions-select/permissions-select.component.html + 19 + + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 36 + + + src/app/components/document-detail/document-detail.component.html + 24 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 145 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 43 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 55 + + + src/app/components/manage/mail/mail.component.html + 67 + + + src/app/components/manage/mail/mail.component.html + 81 + + + src/app/components/manage/mail/mail.component.html + 155 + + + src/app/components/manage/mail/mail.component.html + 169 + + + src/app/components/manage/management-list/management-list.component.html + 10 + + + src/app/components/manage/management-list/management-list.component.html + 10 + + + src/app/components/manage/management-list/management-list.component.html + 10 + + + src/app/components/manage/management-list/management-list.component.html + 10 + + + src/app/components/manage/management-list/management-list.component.html + 115 + + + src/app/components/manage/management-list/management-list.component.html + 115 + + + src/app/components/manage/management-list/management-list.component.html + 115 + + + src/app/components/manage/management-list/management-list.component.html + 115 + + + src/app/components/manage/management-list/management-list.component.html + 127 + + + src/app/components/manage/management-list/management-list.component.html + 127 + + + src/app/components/manage/management-list/management-list.component.html + 127 + + + src/app/components/manage/management-list/management-list.component.html + 127 + + + src/app/components/manage/management-list/management-list.component.ts + 243 + + + src/app/components/manage/saved-views/saved-views.component.html + 30 + + + src/app/components/manage/workflows/workflows.component.html + 55 + + + src/app/components/manage/workflows/workflows.component.html + 66 + + Delete + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 94 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/trash/trash.component.ts + 110 + + + src/app/components/manage/management-list/management-list.component.ts + 239 + + + src/app/components/manage/management-list/management-list.component.ts + 362 + + Confirm delete + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 79 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 80 + + + src/app/components/admin/trash/trash.component.ts + 114 + + + src/app/components/admin/users-groups/users-groups.component.ts + 145 + + + src/app/components/admin/users-groups/users-groups.component.ts + 198 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 104 + + + src/app/components/manage/mail/mail.component.ts + 192 + + + src/app/components/manage/mail/mail.component.ts + 293 + + + src/app/components/manage/management-list/management-list.component.ts + 364 + + + src/app/components/manage/workflows/workflows.component.ts + 133 + + This operation cannot be undone. + + + Document "" deleted + + src/app/components/admin/trash/trash.component.ts + 90 + + Document "" deleted + + + Error deleting document "" + + src/app/components/admin/trash/trash.component.ts + 97 + + Error deleting document "" + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 112 + + This operation will permanently delete the selected documents. + + + This operation will permanently delete all documents in the trash. + + src/app/components/admin/trash/trash.component.ts + 113 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 124 + + Document(s) deleted + + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 131 + + Error deleting document(s) + + + Document "" restored + + src/app/components/admin/trash/trash.component.ts + 144 + + Document "" restored + + + Error restoring document "" + + src/app/components/admin/trash/trash.component.ts + 155 + + Error restoring document "" + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 167 + + Document(s) restored + + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 173 + + Error restoring document(s) + + + Users & Groups + + src/app/components/admin/users-groups/users-groups.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 269 + + + src/app/components/app-frame/app-frame.component.html + 271 + + Users & Groups + + + Create, delete and edit users and groups. + + src/app/components/admin/users-groups/users-groups.component.html + 4 + + Create, delete and edit users and groups. + + + Users + + src/app/components/admin/users-groups/users-groups.component.html + 12 + + + src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html + 76 + + Users + + + Add User + + src/app/components/admin/users-groups/users-groups.component.html + 14 + + Add User + + + Username + + src/app/components/admin/users-groups/users-groups.component.html + 20 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 19 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 13 + + + src/app/components/manage/mail/mail.component.html + 32 + + Username + + + Groups + + src/app/components/admin/users-groups/users-groups.component.html + 22 + + + src/app/components/admin/users-groups/users-groups.component.html + 50 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 34 + + Groups + + + Edit + + src/app/components/admin/users-groups/users-groups.component.html + 35 + + + src/app/components/admin/users-groups/users-groups.component.html + 73 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 53 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 42 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 52 + + + src/app/components/manage/mail/mail.component.html + 65 + + + src/app/components/manage/mail/mail.component.html + 75 + + + src/app/components/manage/mail/mail.component.html + 153 + + + src/app/components/manage/mail/mail.component.html + 163 + + + src/app/components/manage/management-list/management-list.component.html + 114 + + + src/app/components/manage/management-list/management-list.component.html + 114 + + + src/app/components/manage/management-list/management-list.component.html + 114 + + + src/app/components/manage/management-list/management-list.component.html + 114 + + + src/app/components/manage/management-list/management-list.component.html + 124 + + + src/app/components/manage/management-list/management-list.component.html + 124 + + + src/app/components/manage/management-list/management-list.component.html + 124 + + + src/app/components/manage/management-list/management-list.component.html + 124 + + + src/app/components/manage/workflows/workflows.component.html + 54 + + + src/app/components/manage/workflows/workflows.component.html + 63 + + Edit + + + Add Group + + src/app/components/admin/users-groups/users-groups.component.html + 52 + + Add Group + + + No groups defined + + src/app/components/admin/users-groups/users-groups.component.html + 84 + + No groups defined + + + Password has been changed, you will be logged out momentarily. + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 196 + + Password has been changed, you will be logged out momentarily. + + + Saved user "". + + src/app/components/admin/users-groups/users-groups.component.ts + 125 + + Saved user "". + + + Error saving user. + + src/app/components/admin/users-groups/users-groups.component.ts + 135 + + Error saving user. + + + Confirm delete user account + + src/app/components/admin/users-groups/users-groups.component.ts + 143 + + Confirm delete user account + + + This operation will permanently delete this user account. + + src/app/components/admin/users-groups/users-groups.component.ts + 144 + + This operation will permanently delete this user account. + + + Proceed + + src/app/components/admin/users-groups/users-groups.component.ts + 147 + + + src/app/components/admin/users-groups/users-groups.component.ts + 200 + + + src/app/components/document-detail/document-detail.component.ts + 1028 + + + src/app/components/document-detail/document-detail.component.ts + 1393 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 798 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 831 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 850 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 106 + + + src/app/components/manage/mail/mail.component.ts + 194 + + + src/app/components/manage/mail/mail.component.ts + 295 + + + src/app/components/manage/management-list/management-list.component.ts + 366 + + + src/app/components/manage/workflows/workflows.component.ts + 135 + + Proceed + + + Deleted user "" + + src/app/components/admin/users-groups/users-groups.component.ts + 153 + + Deleted user "" + + + Error deleting user "". + + src/app/components/admin/users-groups/users-groups.component.ts + 160 + + Error deleting user "". + + + Saved group "". + + src/app/components/admin/users-groups/users-groups.component.ts + 180 + + Saved group "". + + + Error saving group. + + src/app/components/admin/users-groups/users-groups.component.ts + 188 + + Error saving group. + + + Confirm delete user group + + src/app/components/admin/users-groups/users-groups.component.ts + 196 + + Confirm delete user group + + + This operation will permanently delete this user group. + + src/app/components/admin/users-groups/users-groups.component.ts + 197 + + This operation will permanently delete this user group. + + + Deleted group "" + + src/app/components/admin/users-groups/users-groups.component.ts + 206 + + Deleted group "" + + + Error deleting group "". + + src/app/components/admin/users-groups/users-groups.component.ts + 213 + + Error deleting group "". + + + by Paperless-ngx + + src/app/components/app-frame/app-frame.component.html + 20 + + by Paperless-ngx + + + Logged in as + + src/app/components/app-frame/app-frame.component.html + 43 + + Logged in as + + + My Profile + + src/app/components/app-frame/app-frame.component.html + 47 + + My Profile + + + Logout + + src/app/components/app-frame/app-frame.component.html + 54 + + Logout + + + Documentation + + src/app/components/app-frame/app-frame.component.html + 59 + + + src/app/components/app-frame/app-frame.component.html + 299 + + + src/app/components/app-frame/app-frame.component.html + 302 + + Documentation + + + Saved views + + src/app/components/app-frame/app-frame.component.html + 101 + + + src/app/components/app-frame/app-frame.component.html + 106 + + Saved views + + + Open documents + + src/app/components/app-frame/app-frame.component.html + 141 + + Open documents + + + Close all + + src/app/components/app-frame/app-frame.component.html + 161 + + + src/app/components/app-frame/app-frame.component.html + 163 + + Close all + + + Manage + + src/app/components/app-frame/app-frame.component.html + 172 + + Manage + + + Correspondents + + src/app/components/app-frame/app-frame.component.html + 178 + + + src/app/components/app-frame/app-frame.component.html + 180 + + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 107 + + Correspondents + + + Tags + + src/app/components/app-frame/app-frame.component.html + 185 + + + src/app/components/app-frame/app-frame.component.html + 188 + + + src/app/components/common/input/tags/tags.component.ts + 80 + + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 94 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 5 + + + src/app/components/document-list/document-list.component.html + 224 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 39 + + + src/app/data/document.ts + 42 + + Tags + + + Document Types + + src/app/components/app-frame/app-frame.component.html + 194 + + + src/app/components/app-frame/app-frame.component.html + 196 + + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 120 + + Document Types + + + Storage Paths + + src/app/components/app-frame/app-frame.component.html + 201 + + + src/app/components/app-frame/app-frame.component.html + 203 + + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 133 + + Storage Paths + + + Custom Fields + + src/app/components/app-frame/app-frame.component.html + 208 + + + src/app/components/app-frame/app-frame.component.html + 210 + + + src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html + 4 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 2 + + Custom Fields + + + Workflows + + src/app/components/app-frame/app-frame.component.html + 224 + + + src/app/components/app-frame/app-frame.component.html + 226 + + + src/app/components/manage/workflows/workflows.component.html + 2 + + Workflows + + + Mail + + src/app/components/app-frame/app-frame.component.html + 231 + + + src/app/components/app-frame/app-frame.component.html + 234 + + Mail + + + Administration + + src/app/components/app-frame/app-frame.component.html + 249 + + Administration + + + Configuration + + src/app/components/app-frame/app-frame.component.html + 262 + + + src/app/components/app-frame/app-frame.component.html + 264 + + Configuration + + + GitHub + + src/app/components/app-frame/app-frame.component.html + 309 + + GitHub + + + is available. + + src/app/components/app-frame/app-frame.component.html + 318,319 + + is available. + + + Click to view. + + src/app/components/app-frame/app-frame.component.html + 319 + + Click to view. + + + Paperless-ngx can automatically check for updates + + src/app/components/app-frame/app-frame.component.html + 323 + + Paperless-ngx can automatically check for updates + + + How does this work? + + src/app/components/app-frame/app-frame.component.html + 330,332 + + How does this work? + + + Update available + + src/app/components/app-frame/app-frame.component.html + 343 + + Update available + + + Sidebar views updated + + src/app/components/app-frame/app-frame.component.ts + 264 + + Sidebar views updated + + + Error updating sidebar views + + src/app/components/app-frame/app-frame.component.ts + 267 + + Error updating sidebar views + + + An error occurred while saving update checking settings. + + src/app/components/app-frame/app-frame.component.ts + 288 + + An error occurred while saving update checking settings. + + + Search + + src/app/components/app-frame/global-search/global-search.component.html + 8 + + + src/app/components/app-frame/global-search/global-search.component.html + 26 + + Search + + + Open + + src/app/components/app-frame/global-search/global-search.component.html + 53 + + + src/app/components/app-frame/global-search/global-search.component.html + 56 + + + src/app/components/app-frame/global-search/global-search.component.html + 59 + + + src/app/components/app-frame/global-search/global-search.component.html + 76 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 72 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 143 + + Open + + + Filter documents + + src/app/components/app-frame/global-search/global-search.component.html + 62 + + Filter documents + + + Download + + src/app/components/app-frame/global-search/global-search.component.html + 73 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 104 + + + src/app/components/document-detail/document-detail.component.html + 34 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 117 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 78 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 149 + + Download + + + No results + + src/app/components/app-frame/global-search/global-search.component.html + 87 + + No results + + + Documents + + src/app/components/app-frame/global-search/global-search.component.html + 90 + + Documents + + + Saved Views + + src/app/components/app-frame/global-search/global-search.component.html + 96 + + Saved Views + + + Tags + + src/app/components/app-frame/global-search/global-search.component.html + 103 + + Tags + + + Correspondents + + src/app/components/app-frame/global-search/global-search.component.html + 110 + + Correspondents + + + Document types + + src/app/components/app-frame/global-search/global-search.component.html + 117 + + Document types + + + Storage paths + + src/app/components/app-frame/global-search/global-search.component.html + 124 + + Storage paths + + + Users + + src/app/components/app-frame/global-search/global-search.component.html + 131 + + Users + + + Groups + + src/app/components/app-frame/global-search/global-search.component.html + 138 + + Groups + + + Custom fields + + src/app/components/app-frame/global-search/global-search.component.html + 145 + + Custom fields + + + Mail accounts + + src/app/components/app-frame/global-search/global-search.component.html + 152 + + Mail accounts + + + Mail rules + + src/app/components/app-frame/global-search/global-search.component.html + 159 + + Mail rules + + + Workflows + + src/app/components/app-frame/global-search/global-search.component.html + 166 + + Workflows + + + Successfully updated object. + + src/app/components/app-frame/global-search/global-search.component.ts + 211 + + + src/app/components/app-frame/global-search/global-search.component.ts + 249 + + Successfully updated object. + + + Error occurred saving object. + + src/app/components/app-frame/global-search/global-search.component.ts + 214 + + + src/app/components/app-frame/global-search/global-search.component.ts + 252 + + Error occurred saving object. + + + Clear All + + src/app/components/app-frame/toasts-dropdown/toasts-dropdown.component.html + 16 + + Clear All + + + No notifications + + src/app/components/app-frame/toasts-dropdown/toasts-dropdown.component.html + 20 + + No notifications + + + Clear + + src/app/components/common/clearable-badge/clearable-badge.component.html + 2 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 85 + + Clear + + + Are you sure? + + src/app/components/common/confirm-button/confirm-button.component.ts + 22 + + Are you sure? + + + Confirmation + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 24 + + Confirmation + + + Confirm + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 36 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 26 + + + src/app/components/document-detail/document-detail.component.ts + 981 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 441 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 481 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 519 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 557 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 619 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 752 + + Confirm + + + Documents: + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 9 + + Documents: + + + Use metadata from: + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 22 + + Use metadata from: + + + Regenerate all metadata + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 24 + + Regenerate all metadata + + + Try to include archive version in merge for non-PDF files + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + Try to include archive version in merge for non-PDF files + + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 36 + + Delete original documents after successful merge + + + Note that only PDFs will be included. + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 39 + + Note that only PDFs will be included. + + + Note that only PDFs will be rotated. + + src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html + 25 + + Note that only PDFs will be rotated. + + + View + + src/app/components/common/custom-field-display/custom-field-display.component.html + 22 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 34 + + + src/app/components/common/permissions-select/permissions-select.component.html + 20 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 75 + + View + + + Search fields + + src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html + 10 + + Search fields + + + Create new field + + src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html + 21 + + Create new field + + + Saved field "". + + src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts + 130 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 85 + + Saved field "". + + + Error saving field. + + src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts + 139 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 94 + + Error saving field. + + + Today + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 47 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 52 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 76 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 128 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 152 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 106 + + + src/app/components/common/input/date/date.component.html + 21 + + Today + + + Close + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 48 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 53 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 77 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 129 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 153 + + + src/app/components/common/input/date/date.component.html + 22 + + + src/app/components/document-detail/document-detail.component.html + 107 + + + src/app/guards/dirty-saved-view.guard.ts + 35 + + Close + + + True + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 55 + + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 95 + + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 101 + + True + + + False + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 56 + + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 96 + + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 102 + + False + + + Search docs... + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 70 + + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 118 + + Search docs... + + + Any + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 150 + + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 17 + + Any + + + All + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 152 + + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 15 + + + src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html + 16 + + + src/app/components/common/permissions-select/permissions-select.component.html + 16 + + + src/app/components/common/permissions-select/permissions-select.component.html + 27 + + + src/app/components/document-list/document-list.component.html + 30 + + All + + + Not + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 155 + + Not + + + Add query + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 174 + + Add query + + + Add expression + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 177 + + Add expression + + + Relative dates + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 25 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 101 + + Relative dates + + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 29 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 105 + + now + + + From + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 44 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 120 + + From + + + To + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 68 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 144 + + To + + + Added + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 84 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 90 + + + src/app/components/document-list/document-list.component.html + 278 + + + src/app/data/document.ts + 38 + + + src/app/data/document.ts + 93 + + Added + + + Within 1 week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 76 + + Within 1 week + + + Within 1 month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 81 + + Within 1 month + + + Within 3 months + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 86 + + Within 3 months + + + Within 1 year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 91 + + Within 1 year + + + This year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 96 + + This year + + + This month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 101 + + This month + + + Yesterday + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 111 + + + src/app/pipes/custom-date.pipe.ts + 29 + + Yesterday + + + Matching algorithm + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 13 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 14 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 64 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 18 + + Matching algorithm + + + Matching pattern + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 66 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 20 + + Matching pattern + + + Case insensitive + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 17 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 67 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 21 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 173 + + Case insensitive + + + Create new correspondent + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 43 + + Create new correspondent + + + Edit correspondent + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 47 + + Edit correspondent + + + Data type + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 12 + + Data type + + + Data type cannot be changed after a field is created + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 14 + + Data type cannot be changed after a field is created + + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + + + Default Currency + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 44 + + Default Currency + + + 3-character currency code + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 44 + + 3-character currency code + + + Use locale + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 44 + + Use locale + + + Create new custom field + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts + 118 + + Create new custom field + + + Edit custom field + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts + 122 + + Edit custom field + + + Create new document type + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.ts + 43 + + Create new document type + + + Edit document type + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.ts + 47 + + Edit document type + + + Create new item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 121 + + Create new item + + + Edit item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 125 + + Edit item + + + Create new user group + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts + 36 + + Create new user group + + + Edit user group + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts + 40 + + Edit user group + + + IMAP Server + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 14 + + IMAP Server + + + IMAP Port + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 15 + + IMAP Port + + + IMAP Security + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 16 + + IMAP Security + + + Password + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 20 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 15 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 20 + + Password + + + Password is token + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 21 + + Password is token + + + Check if the password above is a token used for authentication + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 21 + + Check if the password above is a token used for authentication + + + Character Set + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 22 + + Character Set + + + Test + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 37 + + Test + + + No encryption + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 20 + + No encryption + + + SSL + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 21 + + SSL + + + STARTTLS + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 22 + + STARTTLS + + + Create new mail account + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 54 + + Create new mail account + + + Edit mail account + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 58 + + Edit mail account + + + Successfully connected to the mail server + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 103 + + Successfully connected to the mail server + + + Unable to connect to the mail server + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 104 + + Unable to connect to the mail server + + + Account + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 16 + + + src/app/components/manage/mail/mail.component.html + 113 + + Account + + + Order + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 19 + + Order + + + Enabled + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 22 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 19 + + + src/app/components/manage/mail/mail.component.html + 137 + + + src/app/components/manage/workflows/workflows.component.html + 41 + + Enabled + + + Paperless will only process mails that match all of the criteria specified below. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 27 + + Paperless will only process mails that match all of the criteria specified below. + + + Folder + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 29 + + Folder + + + Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 29 + + Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server. + + + Maximum age (days) + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 30 + + Maximum age (days) + + + Filter from + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 33 + + Filter from + + + Filter to + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 34 + + Filter to + + + Filter subject + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + Filter subject + + + Filter body + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 36 + + Filter body + + + Consumption scope + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 42 + + Consumption scope + + + See docs for .eml processing requirements + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 42 + + See docs for .eml processing requirements + + + Attachment type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 43 + + Attachment type + + + PDF layout + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 44 + + PDF layout + + + Include only files matching + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 47 + + Include only files matching + + + Optional. Wildcards e.g. *.pdf or *invoice* allowed. Can be comma-separated list. Case insensitive. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 47 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + Optional. Wildcards e.g. *.pdf or *invoice* allowed. Can be comma-separated list. Case insensitive. + + + Exclude files matching + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + Exclude files matching + + + Action + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 54 + + Action + + + Only performed if the mail is processed. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 54 + + Only performed if the mail is processed. + + + Action parameter + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 56 + + Action parameter + + + Assign title from + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 58 + + Assign title from + + + Assign owner from rule + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 59 + + Assign owner from rule + + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 63 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 265 + + Assign document type + + + Assign correspondent from + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 64 + + Assign correspondent from + + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 66 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 266 + + Assign correspondent + + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 73 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 113 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 186 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 220 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 254 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 264 + + + src/app/components/common/toast/toast.component.html + 30 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 36 + + Error + + + Only process attachments + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 38 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 49 + + Only process attachments + + + Process all files, including 'inline' attachments + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 42 + + Process all files, including 'inline' attachments + + + Process message as .eml + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 53 + + Process message as .eml + + + Process message as .eml and attachments separately + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 57 + + Process message as .eml and attachments separately + + + System default + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 64 + + System default + + + Text, then HTML + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 68 + + Text, then HTML + + + HTML, then text + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 72 + + HTML, then text + + + HTML only + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 76 + + HTML only + + + Text only + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 80 + + Text only + + + Move to specified folder + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 91 + + Move to specified folder + + + Mark as read, don't process read mails + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 95 + + Mark as read, don't process read mails + + + Flag the mail, don't process flagged mails + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 99 + + Flag the mail, don't process flagged mails + + + Tag the mail with specified tag, don't process tagged mails + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 103 + + Tag the mail with specified tag, don't process tagged mails + + + Use subject as title + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 110 + + Use subject as title + + + Use attachment filename as title + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 114 + + Use attachment filename as title + + + Do not assign title from this rule + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 118 + + Do not assign title from this rule + + + Do not assign a correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 125 + + Do not assign a correspondent + + + Use mail address + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 129 + + Use mail address + + + Use name (or mail address if not available) + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 133 + + Use name (or mail address if not available) + + + Use correspondent selected below + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 137 + + Use correspondent selected below + + + Create new mail rule + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 191 + + Create new mail rule + + + Edit mail rule + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 195 + + Edit mail rule + + + Path + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 13 + + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 51 + + Path + + + See <a target='_blank' href='https://docs.paperless-ngx.com/advanced_usage/#file-name-handling'>the documentation</a>. + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 13 + + See <a target='_blank' href='https://docs.paperless-ngx.com/advanced_usage/#file-name-handling'>the documentation</a>. + + + Preview + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 18 + + + src/app/components/document-detail/document-detail.component.html + 309 + + Preview + + + Path test failed + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 30 + + Path test failed + + + No document selected + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 32 + + No document selected + + + Search for a document + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 38 + + Search for a document + + + No documents found + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 39 + + + src/app/components/common/input/document-link/document-link.component.ts + 72 + + No documents found + + + Create new storage path + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts + 82 + + Create new storage path + + + Edit storage path + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts + 86 + + Edit storage path + + + Color + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + + src/app/components/manage/tag-list/tag-list.component.ts + 51 + + Color + + + Parent + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 15 + + Parent + + + Inbox tag + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 17 + + Inbox tag + + + Inbox tags are automatically assigned to all consumed documents. + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 17 + + Inbox tags are automatically assigned to all consumed documents. + + + Create new tag + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts + 51 + + Create new tag + + + Edit tag + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts + 55 + + Edit tag + + + Email + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 14 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 10 + + + src/app/components/document-detail/document-detail.component.html + 92 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 101 + + Email + + + First name + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 16 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 30 + + First name + + + Last name + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 17 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 31 + + Last name + + + Active + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 22 + + Active + + + Admin + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 26 + + Admin + + + Access logs, Django backend + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 26 + + Access logs, Django backend + + + Superuser + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 30 + + Superuser + + + (Grants all permissions and can view objects) + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 30 + + (Grants all permissions and can view objects) + + + Two-factor Authentication + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 37 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 103 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 137 + + Two-factor Authentication + + + Disable Two-factor Authentication + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 39 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 41 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 168 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 170 + + Disable Two-factor Authentication + + + Create new user account + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts + 72 + + Create new user account + + + Edit user account + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts + 76 + + Edit user account + + + Totp deactivated + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts + 132 + + Totp deactivated + + + Totp deactivation failed + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts + 135 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts + 140 + + Totp deactivation failed + + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 18 + + Sort order + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 25 + + + src/app/components/manage/workflows/workflows.component.html + 20 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 31 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 73 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 75 + + Add Action + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 123 + + Trigger type + + + Set scheduled trigger offset and which date field to use. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 125 + + Set scheduled trigger offset and which date field to use. + + + Offset days + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 130 + + Offset days + + + Positive values will trigger after the date, negative values before. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 134 + + Positive values will trigger after the date, negative values before. + + + Relative to + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 139 + + Relative to + + + Custom field + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 + + Custom field + + + Custom field to use for date. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 + + Custom field to use for date. + + + Recurring + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 + + Recurring + + + Trigger is recurring. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 + + Trigger is recurring. + + + Recurring interval days + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 153 + + Recurring interval days + + + Repeat the trigger every n days. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 153 + + Repeat the trigger every n days. + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 158 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 161 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 161 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 163 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 164 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 164 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 165 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 165 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + Content matching pattern + + + Advanced Filters + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 183 + + Advanced Filters + + + Add filter + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 190 + + Add filter + + + No advanced workflow filters defined. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 195 + + No advanced workflow filters defined. + + + Complete the custom field query configuration. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 224,226 + + Complete the custom field query configuration. + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 258 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 263 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 263 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 264 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 267 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 268 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 272 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 274 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 293 + + Assign edit permissions + + + Remove tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 320 + + Remove tags + + + Remove all + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 321 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 327 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 333 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 339 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 345 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 352 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 358 + + Remove all + + + Remove correspondents + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 326 + + Remove correspondents + + + Remove document types + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 332 + + Remove document types + + + Remove storage paths + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 338 + + Remove storage paths + + + Remove custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 344 + + Remove custom fields + + + Remove owners + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 351 + + Remove owners + + + Remove permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 357 + + Remove permissions + + + View permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 360 + + View permissions + + + Edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 379 + + Edit permissions + + + Email subject + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 407 + + Email subject + + + Email body + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 408 + + Email body + + + Email recipients + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 409 + + Email recipients + + + Attach document + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 410 + + Attach document + + + Webhook url + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 418 + + Webhook url + + + Use parameters for webhook body + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 420 + + Use parameters for webhook body + + + Send webhook payload as JSON + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 421 + + Send webhook payload as JSON + + + Webhook params + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 424 + + Webhook params + + + Webhook body + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 426 + + Webhook body + + + Webhook headers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 428 + + Webhook headers + + + Include document + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 429 + + Include document + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 71 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 75 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 79 + + Mail Fetch + + + Web UI + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 83 + + Web UI + + + Modified + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 98 + + + src/app/data/document.ts + 94 + + Modified + + + Custom Field + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 102 + + Custom Field + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 109 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 113 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 117 + + Document Updated + + + Scheduled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 121 + + Scheduled + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 128 + + Assignment + + + Removal + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 132 + + Removal + + + Webhook + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Webhook + + + Has any of these tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 203 + + Has any of these tags + + + Has all of these tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 210 + + Has all of these tags + + + Does not have these tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 217 + + Does not have these tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 224 + + Has correspondent + + + Does not have correspondents + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 232 + + Does not have correspondents + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 240 + + Has document type + + + Does not have document types + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 248 + + Does not have document types + + + Has storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 256 + + Has storage path + + + Does not have storage paths + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 264 + + Does not have storage paths + + + Matches custom field query + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 272 + + Matches custom field query + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 474 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 478 + + Edit workflow + + + {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}} + + src/app/components/common/email-document-dialog/email-document-dialog.component.html + 2,6 + + {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}} + + + Email address(es) + + src/app/components/common/email-document-dialog/email-document-dialog.component.html + 11 + + Email address(es) + + + Subject + + src/app/components/common/email-document-dialog/email-document-dialog.component.html + 15 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 32 + + Subject + + + Message + + src/app/components/common/email-document-dialog/email-document-dialog.component.html + 19 + + Message + + + Use archive version + + src/app/components/common/email-document-dialog/email-document-dialog.component.html + 27 + + Use archive version + + + Send email + + src/app/components/common/email-document-dialog/email-document-dialog.component.html + 33 + + Send email + + + Some email servers may reject messages with large attachments. + + src/app/components/common/email-document-dialog/email-document-dialog.component.html + 37 + + Some email servers may reject messages with large attachments. + + + Email sent + + src/app/components/common/email-document-dialog/email-document-dialog.component.ts + 63 + + Email sent + + + Error emailing documents + + src/app/components/common/email-document-dialog/email-document-dialog.component.ts + 69 + + Error emailing documents + + + Error emailing document + + src/app/components/common/email-document-dialog/email-document-dialog.component.ts + 70 + + Error emailing document + + + Include + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 25 + + Include + + + Exclude + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 27 + + Exclude + + + Create + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 58 + + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 65 + + + src/app/components/manage/management-list/management-list.component.html + 13 + + + src/app/components/manage/management-list/management-list.component.html + 13 + + + src/app/components/manage/management-list/management-list.component.html + 13 + + + src/app/components/manage/management-list/management-list.component.html + 13 + + Create + + + Apply + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 64 + + Apply + + + Click again to exclude items. + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 77 + + Click again to exclude items. + + + Not assigned + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 90 + + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Not assigned + + + Open filter + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 748 + + Open filter + + + Keyboard shortcuts + + src/app/components/common/hotkey-dialog/hotkey-dialog.component.ts + 24 + + Keyboard shortcuts + + + Remove + + src/app/components/common/input/check/check.component.html + 8 + + + src/app/components/common/input/date/date.component.html + 7 + + + src/app/components/common/input/document-link/document-link.component.html + 12 + + + src/app/components/common/input/file/file.component.html + 9 + + + src/app/components/common/input/file/file.component.html + 21 + + + src/app/components/common/input/monetary/monetary.component.html + 9 + + + src/app/components/common/input/number/number.component.html + 9 + + + src/app/components/common/input/select/select.component.html + 10 + + + src/app/components/common/input/switch/switch.component.html + 13 + + + src/app/components/common/input/text/text.component.html + 9 + + + src/app/components/common/input/textarea/textarea.component.html + 9 + + + src/app/components/common/input/url/url.component.html + 7 + + Remove + + + Invalid date. + + src/app/components/common/input/date/date.component.html + 31 + + Invalid date. + + + Suggestions: + + src/app/components/common/input/date/date.component.html + 37 + + + src/app/components/common/input/select/select.component.html + 61 + + + src/app/components/common/input/tags/tags.component.html + 65 + + Suggestions: + + + Filter documents with this + + src/app/components/common/input/date/date.component.ts + 120 + + + src/app/components/common/input/select/select.component.ts + 172 + + Filter documents with this + + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 43 + + + src/app/components/common/input/document-link/document-link.component.html + 50 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 46 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + + + Not found + + src/app/components/common/input/document-link/document-link.component.html + 51 + + Not found + + + Search for documents + + src/app/components/common/input/document-link/document-link.component.ts + 81 + + Search for documents + + + Selected items + + src/app/components/common/input/drag-drop-select/drag-drop-select.component.ts + 25 + + Selected items + + + No items selected + + src/app/components/common/input/drag-drop-select/drag-drop-select.component.ts + 31 + + No items selected + + + Add + + src/app/components/common/input/entries/entries.component.html + 8 + + + src/app/components/common/permissions-select/permissions-select.component.html + 17 + + Add + + + Upload + + src/app/components/common/input/file/file.component.html + 15 + + Upload + + + Show password + + src/app/components/common/input/password/password.component.html + 6 + + Show password + + + Edit Permissions + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 9 + + Edit Permissions + + + Owner: + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 26 + + Owner: + + + Add item + + src/app/components/common/input/select/select.component.html + 25 + + Used for both types, correspondents, storage paths + Add item + + + Private + + src/app/components/common/input/select/select.component.ts + 71 + + + src/app/components/common/tag/tag.component.html + 20 + + + src/app/components/common/tag/tag.component.html + 23 + + + src/app/pipes/object-name.pipe.ts + 40 + + + src/app/pipes/object-name.pipe.ts + 46 + + Private + + + No items found + + src/app/components/common/input/select/select.component.ts + 106 + + No items found + + + Note: value has not yet been set and will not apply until explicitly changed + + src/app/components/common/input/switch/switch.component.html + 39 + + Note: value has not yet been set and will not apply until explicitly changed + + + Add tag + + src/app/components/common/input/tags/tags.component.html + 17 + + Add tag + + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 23 + + Remove tag + + + Filter documents with these Tags + + src/app/components/common/input/tags/tags.component.html + 55 + + Filter documents with these Tags + + + Read more + + src/app/components/common/page-header/page-header.component.html + 15 + + + src/app/components/common/permissions-select/permissions-select.component.html + 9 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 7 + + Read more + + + Select all pages + + src/app/components/common/pdf-editor/pdf-editor.component.html + 9 + + Select all pages + + + Deselect all pages + + src/app/components/common/pdf-editor/pdf-editor.component.html + 12 + + Deselect all pages + + + Rotate selected pages counter-clockwise + + src/app/components/common/pdf-editor/pdf-editor.component.html + 17 + + Rotate selected pages counter-clockwise + + + Rotate selected pages clockwise + + src/app/components/common/pdf-editor/pdf-editor.component.html + 20 + + Rotate selected pages clockwise + + + Delete selected pages + + src/app/components/common/pdf-editor/pdf-editor.component.html + 23 + + Delete selected pages + + + Rotate page counter-clockwise + + src/app/components/common/pdf-editor/pdf-editor.component.html + 33 + + Rotate page counter-clockwise + + + Rotate page clockwise + + src/app/components/common/pdf-editor/pdf-editor.component.html + 36 + + Rotate page clockwise + + + Delete page + + src/app/components/common/pdf-editor/pdf-editor.component.html + 41 + + Delete page + + + Add / remove document split here + + src/app/components/common/pdf-editor/pdf-editor.component.html + 44 + + Add / remove document split here + + + Split here + + src/app/components/common/pdf-editor/pdf-editor.component.html + 70 + + Split here + + + Create new document(s) + + src/app/components/common/pdf-editor/pdf-editor.component.html + 82 + + Create new document(s) + + + Update existing document + + src/app/components/common/pdf-editor/pdf-editor.component.html + 87 + + Update existing document + + + Copy metadata + + src/app/components/common/pdf-editor/pdf-editor.component.html + 94 + + Copy metadata + + + Delete original + + src/app/components/common/pdf-editor/pdf-editor.component.html + 98 + + Delete original + + + Merge with existing permissions + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 14 + + Merge with existing permissions + + + Set permissions + + src/app/components/common/permissions-dialog/permissions-dialog.component.ts + 41 + + Set permissions + + + Edit permissions for + + src/app/components/common/permissions-dialog/permissions-dialog.component.ts + 46 + + Edit permissions for + + + Existing owner, user and group permissions will be merged with these settings. + + src/app/components/common/permissions-dialog/permissions-dialog.component.ts + 87 + + Existing owner, user and group permissions will be merged with these settings. + + + Any and all existing owner, user and group permissions will be replaced. + + src/app/components/common/permissions-dialog/permissions-dialog.component.ts + 88 + + Any and all existing owner, user and group permissions will be replaced. + + + My documents + + src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html + 26 + + My documents + + + Shared with me + + src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html + 36 + + Shared with me + + + Shared by me + + src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html + 46 + + Shared by me + + + Unowned + + src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html + 56 + + Unowned + + + Hide unowned + + src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html + 86 + + Hide unowned + + + Global permissions define what areas of the app and API endpoints users can access. + + src/app/components/common/permissions-select/permissions-select.component.html + 8 + + Global permissions define what areas of the app and API endpoints users can access. + + + Type + + src/app/components/common/permissions-select/permissions-select.component.html + 15 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 56 + + Type + + + Change + + src/app/components/common/permissions-select/permissions-select.component.html + 18 + + Change + + + Inherited from group + + src/app/components/common/permissions-select/permissions-select.component.ts + 78 + + Inherited from group + + + Error loading preview + + src/app/components/common/preview-popup/preview-popup.component.html + 10 + + Error loading preview + + + Open preview + + src/app/components/common/preview-popup/preview-popup.component.ts + 52 + + Open preview + + + Edit Profile + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 3 + + Edit Profile + + + Confirm Email + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 15 + + Confirm Email + + + Confirm Password + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 25 + + Confirm Password + + + API Auth Token + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 33 + + API Auth Token + + + Copy + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 37 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 44 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 155 + + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 28 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 284 + + + src/app/components/manage/mail/mail.component.html + 156 + + + src/app/components/manage/mail/mail.component.html + 174 + + + src/app/components/manage/workflows/workflows.component.html + 56 + + + src/app/components/manage/workflows/workflows.component.html + 71 + + Copy + + + Regenerate auth token + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 47 + + Regenerate auth token + + + Copied! + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 54 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 162 + + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 39 + + Copied! + + + Warning: changing the token cannot be undone + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 56 + + Warning: changing the token cannot be undone + + + Connected social accounts + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 62 + + Connected social accounts + + + Set a password before disconnecting social account. + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 66 + + Set a password before disconnecting social account. + + + Disconnect + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 72 + + Disconnect + + + Disconnect social account + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 74 + + Disconnect social account + + + Warning: disconnecting social accounts cannot be undone + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 84 + + Warning: disconnecting social accounts cannot be undone + + + Connect new social account + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 89 + + Connect new social account + + + Scan the QR code with your authenticator app and then enter the code below + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 114 + + Scan the QR code with your authenticator app and then enter the code below + + + Authenticator secret + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 117 + + Authenticator secret + + + You can store this secret and use it to reinstall your authenticator app at a later time. + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 118 + + You can store this secret and use it to reinstall your authenticator app at a later time. + + + Code + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 121 + + Code + + + Recovery codes will not be shown again, make sure to save them. + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 140 + + Recovery codes will not be shown again, make sure to save them. + + + Copy codes + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 158 + + Copy codes + + + Emails must match + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 143 + + Emails must match + + + Passwords must match + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 171 + + Passwords must match + + + Profile updated successfully + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 193 + + Profile updated successfully + + + Error saving profile + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 207 + + Error saving profile + + + Error generating auth token + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 225 + + Error generating auth token + + + Error disconnecting social account + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 250 + + Error disconnecting social account + + + Error fetching TOTP settings + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 269 + + Error fetching TOTP settings + + + TOTP activated successfully + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 290 + + TOTP activated successfully + + + Error activating TOTP + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 292 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 298 + + Error activating TOTP + + + TOTP deactivated successfully + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 314 + + TOTP deactivated successfully + + + Error deactivating TOTP + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 316 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 321 + + Error deactivating TOTP + + + No existing links + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 8,10 + + No existing links + + + Share + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 32 + + Share + + + Share archive version + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 48 + + Share archive version + + + Expires + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 52 + + Expires + + + 1 day + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 25 + + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 102 + + 1 day + + + 7 days + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 26 + + 7 days + + + 30 days + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 27 + + 30 days + + + Never + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 28 + + Never + + + Share Links + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 32 + + + src/app/components/document-detail/document-detail.component.html + 88 + + Share Links + + + Error retrieving links + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 83 + + Error retrieving links + + + days + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 102 + + days + + + Error deleting link + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 131 + + Error deleting link + + + Error creating link + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 159 + + Error creating link + + + Environment + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 18 + + Environment + + + Paperless-ngx Version + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 22 + + Paperless-ngx Version + + + Install Type + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 35 + + Install Type + + + Server OS + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 37 + + Server OS + + + Media Storage + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 39 + + Media Storage + + + available + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 42 + + available + + + total + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 42 + + total + + + Database + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 52 + + Database + + + Status + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 58 + + + src/app/components/common/toast/toast.component.html + 28 + + + src/app/components/manage/mail/mail.component.html + 114 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 35 + + + src/app/components/manage/workflows/workflows.component.html + 19 + + Status + + + Migration Status + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 76 + + Migration Status + + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 80 + + Up to date + + + Latest Migration + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 85 + + Latest Migration + + + Pending Migrations + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 87 + + Pending Migrations + + + Tasks Queue + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 105 + + Tasks Queue + + + Redis Status + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 109 + + Redis Status + + + Celery Status + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 127 + + Celery Status + + + Health + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 153 + + Health + + + Search Index + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 157 + + Search Index + + + Run Task + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 177 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 211 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 245 + + Run Task + + + Last Updated + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 184 + + Last Updated + + + Classifier + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 189 + + Classifier + + + Last Trained + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 218 + + Last Trained + + + Sanity Checker + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 223 + + Sanity Checker + + + Last Run + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 252 + + Last Run + + + WebSocket Connection + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 257 + + WebSocket Connection + + + OK + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 261 + + OK + + + Copy Raw Error + + src/app/components/common/toast/toast.component.html + 43 + + Copy Raw Error + + + Hint: saved views can be created from the documents list + + src/app/components/dashboard/dashboard.component.html + 42 + + Hint: saved views can be created from the documents list + + + Hello , welcome to + + src/app/components/dashboard/dashboard.component.ts + 61 + + Hello , welcome to + + + Welcome to + + src/app/components/dashboard/dashboard.component.ts + 63 + + Welcome to + + + Dashboard updated + + src/app/components/dashboard/dashboard.component.ts + 94 + + Dashboard updated + + + Error updating dashboard + + src/app/components/dashboard/dashboard.component.ts + 97 + + Error updating dashboard + + + Show all + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 10 + + Show all + + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 54 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 25 + + + src/app/components/document-list/document-list.component.html + 323 + + Filter by correspondent + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 64 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 96 + + + src/app/components/document-list/document-list.component.html + 363 + + Filter by document type + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 69 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 102 + + + src/app/components/document-list/document-list.component.html + 370 + + Filter by storage path + + + Filter by owner + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 74 + + Filter by owner + + + Yes + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 84 + + + src/app/components/document-list/document-list.component.html + 391 + + Yes + + + No + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 84 + + + src/app/components/document-list/document-list.component.html + 391 + + No + + + No documents + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 149 + + No documents + + + Statistics + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 1 + + Statistics + + + Go to inbox + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 28 + + Go to inbox + + + Documents in inbox + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 29 + + Documents in inbox + + + Go to documents + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 33 + + Go to documents + + + Total documents + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 34 + + Total documents + + + Total characters + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 38 + + Total characters + + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 43 + + Current ASN + + + Other + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts + 79 + + Other + + + Upload documents + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 6 + + Upload documents + + + or drop files anywhere + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 7 + + or drop files anywhere + + + Dismiss completed + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 23 + + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Dismiss completed + + + Processing: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 57 + + Processing: + + + Failed: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 60 + + Failed: + + + Added: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 63 + + Added: + + + , + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 66 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 386 + + this string is used to separate processing, failed and added on the file upload widget + , + + + Paperless-ngx is running! + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 2 + + Paperless-ngx is running! + + + You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 3 + + You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below. + + + More detail on how to use and configure Paperless-ngx is always available in the documentation. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 4 + + More detail on how to use and configure Paperless-ngx is always available in the documentation. + + + Thanks for being a part of the Paperless-ngx community! + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 7 + + Thanks for being a part of the Paperless-ngx community! + + + Start the tour + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 8 + + Start the tour + + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Searching document with asn + + + Page + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/document-list.component.html + 27 + + Page + + + of + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + - + + src/app/components/document-detail/document-detail.component.html + 11 + + - + + + + + + src/app/components/document-detail/document-detail.component.html + 19 + + + + + + Download original + + src/app/components/document-detail/document-detail.component.html + 41 + + Download original + + + Reprocess + + src/app/components/document-detail/document-detail.component.html + 54 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 91 + + Reprocess + + + Print + + src/app/components/document-detail/document-detail.component.html + 58 + + Print + + + More like this + + src/app/components/document-detail/document-detail.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 69 + + More like this + + + PDF Editor + + src/app/components/document-detail/document-detail.component.html + 66 + + + src/app/components/document-detail/document-detail.component.ts + 1392 + + PDF Editor + + + Send + + src/app/components/document-detail/document-detail.component.html + 84 + + Send + + + Previous + + src/app/components/document-detail/document-detail.component.html + 110 + + Previous + + + Details + + src/app/components/document-detail/document-detail.component.html + 123 + + Details + + + Title + + src/app/components/document-detail/document-detail.component.html + 126 + + + src/app/components/document-list/document-list.component.html + 221 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 179 + + + src/app/data/document.ts + 30 + + + src/app/data/document.ts + 90 + + Title + + + Archive serial number + + src/app/components/document-detail/document-detail.component.html + 127 + + Archive serial number + + + Date created + + src/app/components/document-detail/document-detail.component.html + 128 + + Date created + + + Correspondent + + src/app/components/document-detail/document-detail.component.html + 130 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 19 + + + src/app/components/document-list/document-list.component.html + 211 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 50 + + + src/app/data/document.ts + 46 + + + src/app/data/document.ts + 89 + + Correspondent + + + Document type + + src/app/components/document-detail/document-detail.component.html + 132 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 33 + + + src/app/components/document-list/document-list.component.html + 251 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 61 + + + src/app/data/document.ts + 50 + + + src/app/data/document.ts + 91 + + Document type + + + Storage path + + src/app/components/document-detail/document-detail.component.html + 134 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 47 + + + src/app/components/document-list/document-list.component.html + 260 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 72 + + + src/app/data/document.ts + 54 + + Storage path + + + Default + + src/app/components/document-detail/document-detail.component.html + 135 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Default + + + Content + + src/app/components/document-detail/document-detail.component.html + 239 + + Content + + + Metadata + + src/app/components/document-detail/document-detail.component.html + 248 + + + src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts + 20 + + Metadata + + + Date modified + + src/app/components/document-detail/document-detail.component.html + 255 + + Date modified + + + Date added + + src/app/components/document-detail/document-detail.component.html + 259 + + Date added + + + Media filename + + src/app/components/document-detail/document-detail.component.html + 263 + + Media filename + + + Original filename + + src/app/components/document-detail/document-detail.component.html + 267 + + Original filename + + + Original MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 271 + + Original MD5 checksum + + + Original file size + + src/app/components/document-detail/document-detail.component.html + 275 + + Original file size + + + Original mime type + + src/app/components/document-detail/document-detail.component.html + 279 + + Original mime type + + + Archive MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 284 + + Archive MD5 checksum + + + Archive file size + + src/app/components/document-detail/document-detail.component.html + 290 + + Archive file size + + + Original document metadata + + src/app/components/document-detail/document-detail.component.html + 299 + + Original document metadata + + + Archived document metadata + + src/app/components/document-detail/document-detail.component.html + 302 + + Archived document metadata + + + Notes + + src/app/components/document-detail/document-detail.component.html + 321,324 + + Notes + + + History + + src/app/components/document-detail/document-detail.component.html + 332 + + History + + + Save & next + + src/app/components/document-detail/document-detail.component.html + 369 + + Save & next + + + Save & close + + src/app/components/document-detail/document-detail.component.html + 372 + + Save & close + + + Document loading... + + src/app/components/document-detail/document-detail.component.html + 382 + + Document loading... + + + Enter Password + + src/app/components/document-detail/document-detail.component.html + 436 + + Enter Password + + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 416,418 + + An error occurred loading content: + + + Document changes detected + + src/app/components/document-detail/document-detail.component.ts + 450 + + Document changes detected + + + The version of this document in your browser session appears older than the existing version. + + src/app/components/document-detail/document-detail.component.ts + 451 + + The version of this document in your browser session appears older than the existing version. + + + 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 + 452 + + Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. + + + Ok + + src/app/components/document-detail/document-detail.component.ts + 454 + + Ok + + + Next document + + src/app/components/document-detail/document-detail.component.ts + 580 + + Next document + + + Previous document + + src/app/components/document-detail/document-detail.component.ts + 590 + + Previous document + + + Close document + + src/app/components/document-detail/document-detail.component.ts + 598 + + + src/app/services/open-documents.service.ts + 130 + + Close document + + + Save document + + src/app/components/document-detail/document-detail.component.ts + 605 + + Save document + + + Save and close / next + + src/app/components/document-detail/document-detail.component.ts + 614 + + Save and close / next + + + Error retrieving metadata + + src/app/components/document-detail/document-detail.component.ts + 669 + + Error retrieving metadata + + + Error retrieving suggestions. + + src/app/components/document-detail/document-detail.component.ts + 698 + + Error retrieving suggestions. + + + Document "" saved successfully. + + src/app/components/document-detail/document-detail.component.ts + 870 + + + src/app/components/document-detail/document-detail.component.ts + 894 + + Document "" saved successfully. + + + Error saving document "" + + src/app/components/document-detail/document-detail.component.ts + 900 + + Error saving document "" + + + Error saving document + + src/app/components/document-detail/document-detail.component.ts + 950 + + Error saving document + + + Do you really want to move the document "" to the trash? + + src/app/components/document-detail/document-detail.component.ts + 982 + + Do you really want to move the document "" to the trash? + + + Documents can be restored prior to permanent deletion. + + src/app/components/document-detail/document-detail.component.ts + 983 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Documents can be restored prior to permanent deletion. + + + Move to trash + + src/app/components/document-detail/document-detail.component.ts + 985 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 756 + + Move to trash + + + Error deleting document + + src/app/components/document-detail/document-detail.component.ts + 1004 + + Error deleting document + + + Reprocess confirm + + src/app/components/document-detail/document-detail.component.ts + 1024 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 794 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 1025 + + This operation will permanently recreate the archive file for this document. + + + The archive file will be re-generated with the current settings. + + src/app/components/document-detail/document-detail.component.ts + 1026 + + The archive file will be re-generated with the current settings. + + + 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 + 1036 + + 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. + + + Error executing operation + + src/app/components/document-detail/document-detail.component.ts + 1047 + + Error executing operation + + + Error downloading document + + src/app/components/document-detail/document-detail.component.ts + 1096 + + Error downloading document + + + Page Fit + + src/app/components/document-detail/document-detail.component.ts + 1173 + + Page Fit + + + PDF edit operation for "" will begin in the background. + + src/app/components/document-detail/document-detail.component.ts + 1411 + + PDF edit operation for "" will begin in the background. + + + Error executing PDF edit operation + + src/app/components/document-detail/document-detail.component.ts + 1423 + + Error executing PDF edit operation + + + Print failed. + + src/app/components/document-detail/document-detail.component.ts + 1460 + + Print failed. + + + Error loading document for printing. + + src/app/components/document-detail/document-detail.component.ts + 1472 + + Error loading document for printing. + + + An error occurred loading tiff: + + src/app/components/document-detail/document-detail.component.ts + 1537 + + + src/app/components/document-detail/document-detail.component.ts + 1541 + + An error occurred loading tiff: + + + No entries found. + + src/app/components/document-history/document-history.component.html + 10 + + No entries found. + + + Edit: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 3 + + Edit: + + + Filter tags + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 6 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 40 + + Filter tags + + + Filter correspondents + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 20 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 51 + + Filter correspondents + + + Filter document types + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 34 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 62 + + Filter document types + + + Filter storage paths + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 48 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 73 + + Filter storage paths + + + Custom fields + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 61 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 84 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 187 + + Custom fields + + + Filter custom fields + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 62 + + Filter custom fields + + + Set values + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 70 + + Set values + + + Rotate + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 94 + + Rotate + + + Merge + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 97 + + Merge + + + Include: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 123 + + Include: + + + Archived files + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 127 + + Archived files + + + Original files + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 131 + + Original files + + + Use formatted filename + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 136 + + Use formatted filename + + + Error executing bulk operation + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 290 + + Error executing bulk operation + + + "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 378 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 384 + + "" + + + "" and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 380 + + This is for messages like 'modify "tag1" and "tag2"' + "" and "" + + + and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 388,390 + + this is for messages like 'modify "tag1", "tag2" and "tag3"' + and "" + + + Confirm tags assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 405 + + Confirm tags assignment + + + This operation will add the tag "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 411 + + This operation will add the tag "" to selected document(s). + + + This operation will add the tags to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 416,418 + + This operation will add the tags to selected document(s). + + + This operation will remove the tag "" from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 424 + + This operation will remove the tag "" from selected document(s). + + + This operation will remove the tags from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 429,431 + + This operation will remove the tags from selected document(s). + + + This operation will add the tags and remove the tags on selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 433,437 + + This operation will add the tags and remove the tags on selected document(s). + + + Confirm correspondent assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 474 + + Confirm correspondent assignment + + + This operation will assign the correspondent "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 476 + + This operation will assign the correspondent "" to selected document(s). + + + This operation will remove the correspondent from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 478 + + This operation will remove the correspondent from selected document(s). + + + Confirm document type assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 512 + + Confirm document type assignment + + + This operation will assign the document type "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 514 + + This operation will assign the document type "" to selected document(s). + + + This operation will remove the document type from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 516 + + This operation will remove the document type from selected document(s). + + + Confirm storage path assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 550 + + Confirm storage path assignment + + + This operation will assign the storage path "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 552 + + This operation will assign the storage path "" to selected document(s). + + + This operation will remove the storage path from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 554 + + This operation will remove the storage path from selected document(s). + + + Confirm custom field assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 583 + + Confirm custom field assignment + + + This operation will assign the custom field "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 589 + + This operation will assign the custom field "" to selected document(s). + + + This operation will assign the custom fields to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 594,596 + + This operation will assign the custom fields to selected document(s). + + + This operation will remove the custom field "" from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 602 + + This operation will remove the custom field "" from selected document(s). + + + This operation will remove the custom fields from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 607,609 + + This operation will remove the custom fields from selected document(s). + + + This operation will assign the custom fields and remove the custom fields on selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 611,615 + + This operation will assign the custom fields and remove the custom fields on selected document(s). + + + Move selected document(s) to the trash? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + Move selected document(s) to the trash? + + + This operation will permanently recreate the archive files for selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 795 + + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 796 + + The archive files will be re-generated with the current settings. + + + Rotate confirm + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 828 + + Rotate confirm + + + This operation will permanently rotate the original version of document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 829 + + This operation will permanently rotate the original version of document(s). + + + Merge confirm + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 848 + + Merge confirm + + + This operation will merge selected documents into a new document. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 849 + + This operation will merge selected documents into a new document. + + + Merged document will be queued for consumption. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 868 + + Merged document will be queued for consumption. + + + Custom fields updated. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 892 + + Custom fields updated. + + + Error updating custom fields. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 901 + + Error updating custom fields. + + + {VAR_PLURAL, plural, =1 {Set custom fields for 1 document} other {Set custom fields for documents}} + + src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html + 3,7 + + {VAR_PLURAL, plural, =1 {Set custom fields for 1 document} other {Set custom fields for documents}} + + + Select custom fields + + src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html + 13 + + Select custom fields + + + {VAR_PLURAL, plural, =1 {This operation will also remove 1 custom field from the selected documents.} other {This operation will also + remove custom fields from the selected documents.}} + + src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html + 73,78 + + {VAR_PLURAL, plural, =1 {This operation will also remove 1 custom field from the selected documents.} other {This operation will also + remove custom fields from the selected documents.}} + + + Filter by tag + + src/app/components/document-list/document-card-large/document-card-large.component.html + 36 + + + src/app/components/document-list/document-list.component.html + 339 + + Filter by tag + + + View notes + + src/app/components/document-list/document-card-large/document-card-large.component.html + 91 + + View notes + + + Created: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 115,116 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 76,77 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 91,92 + + Created: + + + Added: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 116,117 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 77,78 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 92,93 + + Added: + + + Modified: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 117,118 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 78,79 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 93,94 + + Modified: + + + {VAR_PLURAL, plural, =1 {1 page} other { pages}} + + src/app/components/document-list/document-card-large/document-card-large.component.html + 134 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 106 + + {VAR_PLURAL, plural, =1 {1 page} other { pages}} + + + Shared + + src/app/components/document-list/document-card-large/document-card-large.component.html + 144 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 125 + + + src/app/data/document.ts + 66 + + + src/app/pipes/username.pipe.ts + 35 + + Shared + + + Score: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 149 + + Score: + + + Toggle tag filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 20 + + Toggle tag filter + + + Toggle correspondent filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + Toggle correspondent filter + + + Toggle document type filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 59 + + Toggle document type filter + + + Toggle storage path filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 66 + + Toggle storage path filter + + + Select + + src/app/components/document-list/document-list.component.html + 5 + + + src/app/data/custom-field.ts + 51 + + Select + + + Select none + + src/app/components/document-list/document-list.component.html + 11 + + Select none + + + Select page + + src/app/components/document-list/document-list.component.html + 12 + + + src/app/components/document-list/document-list.component.ts + 315 + + Select page + + + Select all + + src/app/components/document-list/document-list.component.html + 13 + + + src/app/components/document-list/document-list.component.ts + 308 + + Select all + + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + + + None + + src/app/components/document-list/document-list.component.html + 23 + + + src/app/components/manage/management-list/management-list.component.ts + 120 + + + src/app/data/matching-model.ts + 45 + + None + + + Sort + + src/app/components/document-list/document-list.component.html + 68 + + Sort + + + Views + + src/app/components/document-list/document-list.component.html + 94 + + Views + + + Save "" + + src/app/components/document-list/document-list.component.html + 113 + + Save "" + + + Save as... + + src/app/components/document-list/document-list.component.html + 116 + + Save as... + + + All saved views + + src/app/components/document-list/document-list.component.html + 117 + + All saved views + + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + src/app/components/document-list/document-list.component.html + 137 + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + src/app/components/document-list/document-list.component.html + 141 + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + + (filtered) + + src/app/components/document-list/document-list.component.html + 143 + + (filtered) + + + Reset filters + + src/app/components/document-list/document-list.component.html + 148 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 107 + + Reset filters + + + Error while loading documents + + src/app/components/document-list/document-list.component.html + 169 + + Error while loading documents + + + Sort by ASN + + src/app/components/document-list/document-list.component.html + 198 + + Sort by ASN + + + ASN + + src/app/components/document-list/document-list.component.html + 202 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 184 + + + src/app/data/document.ts + 70 + + + src/app/data/document.ts + 88 + + ASN + + + Sort by correspondent + + src/app/components/document-list/document-list.component.html + 207 + + Sort by correspondent + + + Sort by title + + src/app/components/document-list/document-list.component.html + 216 + + Sort by title + + + Sort by owner + + src/app/components/document-list/document-list.component.html + 229 + + Sort by owner + + + Owner + + src/app/components/document-list/document-list.component.html + 233 + + + src/app/data/document.ts + 62 + + + src/app/data/document.ts + 96 + + Owner + + + Sort by notes + + src/app/components/document-list/document-list.component.html + 238 + + Sort by notes + + + Sort by document type + + src/app/components/document-list/document-list.component.html + 247 + + Sort by document type + + + Sort by storage path + + src/app/components/document-list/document-list.component.html + 256 + + Sort by storage path + + + Sort by created date + + src/app/components/document-list/document-list.component.html + 265 + + Sort by created date + + + Sort by added date + + src/app/components/document-list/document-list.component.html + 274 + + Sort by added date + + + Sort by number of pages + + src/app/components/document-list/document-list.component.html + 283 + + Sort by number of pages + + + Pages + + src/app/components/document-list/document-list.component.html + 287 + + + src/app/data/document.ts + 74 + + + src/app/data/document.ts + 97 + + + src/app/data/paperless-config.ts + 91 + + Pages + + + Shared + + src/app/components/document-list/document-list.component.html + 290,292 + + Shared + + + Sort by + + src/app/components/document-list/document-list.component.html + 297,298 + + Sort by + + + Edit document + + src/app/components/document-list/document-list.component.html + 331 + + Edit document + + + Preview document + + src/app/components/document-list/document-list.component.html + 332 + + Preview document + + + Reset filters / selection + + src/app/components/document-list/document-list.component.ts + 296 + + Reset filters / selection + + + Open first [selected] document + + src/app/components/document-list/document-list.component.ts + 324 + + Open first [selected] document + + + Previous page + + src/app/components/document-list/document-list.component.ts + 340 + + Previous page + + + Next page + + src/app/components/document-list/document-list.component.ts + 352 + + Next page + + + View "" saved successfully. + + src/app/components/document-list/document-list.component.ts + 385 + + View "" saved successfully. + + + Failed to save view "". + + src/app/components/document-list/document-list.component.ts + 391 + + Failed to save view "". + + + View "" created successfully. + + src/app/components/document-list/document-list.component.ts + 437 + + View "" created successfully. + + + Dates + + src/app/components/document-list/filter-editor/filter-editor.component.html + 90 + + Dates + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 182 + + Title & content + + + File type + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 189 + + File type + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 198 + + More like + + + equals + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 204 + + equals + + + is empty + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 208 + + is empty + + + is not empty + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 212 + + is not empty + + + greater than + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 216 + + greater than + + + less than + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 220 + + less than + + + Correspondent: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 261,265 + + Correspondent: + + + Without correspondent + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 267 + + Without correspondent + + + Document type: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 273,277 + + Document type: + + + Without document type + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 279 + + Without document type + + + Storage path: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 285,289 + + Storage path: + + + Without storage path + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 291 + + Without storage path + + + Tag: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 295,297 + + Tag: + + + Without any tag + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 301 + + Without any tag + + + Custom fields query + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 305 + + Custom fields query + + + Title: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 308 + + Title: + + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 311 + + ASN: + + + Owner: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 314 + + Owner: + + + Owner not in: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 317 + + Owner not in: + + + Without an owner + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 320 + + Without an owner + + + Save current view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 3 + + Save current view + + + Show in sidebar + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 9 + + + src/app/components/manage/saved-views/saved-views.component.html + 24 + + Show in sidebar + + + Show on dashboard + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 10 + + + src/app/components/manage/saved-views/saved-views.component.html + 20 + + Show on dashboard + + + Filter rules error occurred while saving this view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 13 + + Filter rules error occurred while saving this view + + + The error returned was + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 14 + + The error returned was + + + Enter note + + src/app/components/document-notes/document-notes.component.html + 5 + + Enter note + + + Please enter a note. + + src/app/components/document-notes/document-notes.component.html + 6,8 + + Please enter a note. + + + Add note + + src/app/components/document-notes/document-notes.component.html + 14 + + Add note + + + Delete note + + src/app/components/document-notes/document-notes.component.html + 25 + + + src/app/components/document-notes/document-notes.component.html + 27 + + Delete note + + + Error saving note + + src/app/components/document-notes/document-notes.component.ts + 81 + + Error saving note + + + Error deleting note + + src/app/components/document-notes/document-notes.component.ts + 95 + + Error deleting note + + + Drop files to begin upload + + src/app/components/file-drop/file-drop.component.html + 6 + + Drop files to begin upload + + + Initiating upload... + + src/app/components/file-drop/file-drop.component.ts + 137 + + + src/app/components/file-drop/file-drop.component.ts + 146 + + Initiating upload... + + + Failed to read dropped items: + + src/app/components/file-drop/file-drop.component.ts + 142 + + Failed to read dropped items: + + + correspondent + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 47 + + correspondent + + + correspondents + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 48 + + correspondents + + + Last used + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 53 + + Last used + + + Do you really want to delete the correspondent ""? + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 78 + + Do you really want to delete the correspondent ""? + + + Customize the data fields that can be attached to documents. + + src/app/components/manage/custom-fields/custom-fields.component.html + 4 + + Customize the data fields that can be attached to documents. + + + Add Field + + src/app/components/manage/custom-fields/custom-fields.component.html + 9 + + Add Field + + + Data Type + + src/app/components/manage/custom-fields/custom-fields.component.html + 18 + + Data Type + + + Filter Documents () + + src/app/components/manage/custom-fields/custom-fields.component.html + 45 + + + src/app/components/manage/management-list/management-list.component.html + 117 + + + src/app/components/manage/management-list/management-list.component.html + 117 + + + src/app/components/manage/management-list/management-list.component.html + 117 + + + src/app/components/manage/management-list/management-list.component.html + 117 + + Filter Documents () + + + No fields defined. + + src/app/components/manage/custom-fields/custom-fields.component.html + 70 + + No fields defined. + + + Confirm delete field + + src/app/components/manage/custom-fields/custom-fields.component.ts + 102 + + Confirm delete field + + + This operation will permanently delete this field. + + src/app/components/manage/custom-fields/custom-fields.component.ts + 103 + + This operation will permanently delete this field. + + + Deleted field "" + + src/app/components/manage/custom-fields/custom-fields.component.ts + 112 + + Deleted field "" + + + Error deleting field "". + + src/app/components/manage/custom-fields/custom-fields.component.ts + 121 + + Error deleting field "". + + + document type + + src/app/components/manage/document-type-list/document-type-list.component.ts + 43 + + document type + + + document types + + src/app/components/manage/document-type-list/document-type-list.component.ts + 44 + + document types + + + Do you really want to delete the document type ""? + + src/app/components/manage/document-type-list/document-type-list.component.ts + 49 + + Do you really want to delete the document type ""? + + + Mail Settings + + src/app/components/manage/mail/mail.component.html + 2 + + Mail Settings + + + Mail accounts + + src/app/components/manage/mail/mail.component.html + 12 + + Mail accounts + + + Add Account + + src/app/components/manage/mail/mail.component.html + 14 + + Add Account + + + Connect Gmail Account + + src/app/components/manage/mail/mail.component.html + 18 + + Connect Gmail Account + + + Connect Outlook Account + + src/app/components/manage/mail/mail.component.html + 23 + + Connect Outlook Account + + + Server + + src/app/components/manage/mail/mail.component.html + 31 + + Server + + + Process Mail + + src/app/components/manage/mail/mail.component.html + 68 + + + src/app/components/manage/mail/mail.component.html + 86 + + Process Mail + + + No mail accounts defined. + + src/app/components/manage/mail/mail.component.html + 95 + + No mail accounts defined. + + + Mail rules + + src/app/components/manage/mail/mail.component.html + 103 + + Mail rules + + + Add Rule + + src/app/components/manage/mail/mail.component.html + 105 + + Add Rule + + + Sort Order + + src/app/components/manage/mail/mail.component.html + 112 + + Sort Order + + + Disabled + + src/app/components/manage/mail/mail.component.html + 137 + + + src/app/components/manage/workflows/workflows.component.html + 41 + + Disabled + + + View Processed Mail + + src/app/components/manage/mail/mail.component.html + 143 + + View Processed Mail + + + No mail rules defined. + + src/app/components/manage/mail/mail.component.html + 183 + + No mail rules defined. + + + Error retrieving mail accounts + + src/app/components/manage/mail/mail.component.ts + 105 + + Error retrieving mail accounts + + + Error retrieving mail rules + + src/app/components/manage/mail/mail.component.ts + 127 + + Error retrieving mail rules + + + OAuth2 authentication success + + src/app/components/manage/mail/mail.component.ts + 135 + + OAuth2 authentication success + + + OAuth2 authentication failed, see logs for details + + src/app/components/manage/mail/mail.component.ts + 146 + + OAuth2 authentication failed, see logs for details + + + Saved account "". + + src/app/components/manage/mail/mail.component.ts + 170 + + Saved account "". + + + Error saving account. + + src/app/components/manage/mail/mail.component.ts + 182 + + Error saving account. + + + Confirm delete mail account + + src/app/components/manage/mail/mail.component.ts + 190 + + Confirm delete mail account + + + This operation will permanently delete this mail account. + + src/app/components/manage/mail/mail.component.ts + 191 + + This operation will permanently delete this mail account. + + + Deleted mail account "" + + src/app/components/manage/mail/mail.component.ts + 201 + + Deleted mail account "" + + + Error deleting mail account "". + + src/app/components/manage/mail/mail.component.ts + 212 + + Error deleting mail account "". + + + Processing mail account "" + + src/app/components/manage/mail/mail.component.ts + 224 + + Processing mail account "" + + + Error processing mail account "" + + src/app/components/manage/mail/mail.component.ts + 229 + + Error processing mail account "" + + + Saved rule "". + + src/app/components/manage/mail/mail.component.ts + 247 + + Saved rule "". + + + Error saving rule. + + src/app/components/manage/mail/mail.component.ts + 258 + + Error saving rule. + + + Rule "" enabled. + + src/app/components/manage/mail/mail.component.ts + 274 + + Rule "" enabled. + + + Rule "" disabled. + + src/app/components/manage/mail/mail.component.ts + 275 + + Rule "" disabled. + + + Error toggling rule "". + + src/app/components/manage/mail/mail.component.ts + 280 + + Error toggling rule "". + + + Confirm delete mail rule + + src/app/components/manage/mail/mail.component.ts + 291 + + Confirm delete mail rule + + + This operation will permanently delete this mail rule. + + src/app/components/manage/mail/mail.component.ts + 292 + + This operation will permanently delete this mail rule. + + + Deleted mail rule "" + + src/app/components/manage/mail/mail.component.ts + 302 + + Deleted mail rule "" + + + Error deleting mail rule "". + + src/app/components/manage/mail/mail.component.ts + 313 + + Error deleting mail rule "". + + + Permissions updated + + src/app/components/manage/mail/mail.component.ts + 337 + + Permissions updated + + + Error updating permissions + + src/app/components/manage/mail/mail.component.ts + 342 + + + src/app/components/manage/management-list/management-list.component.ts + 349 + + Error updating permissions + + + Processed Mail for + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 2 + + Processed Mail for + + + No processed email messages found. + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 20 + + No processed email messages found. + + + Received + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 33 + + Received + + + Processed + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 34 + + Processed + + + Processed mail(s) deleted + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts + 72 + + Processed mail(s) deleted + + + Filter by: + + src/app/components/manage/management-list/management-list.component.html + 20 + + + src/app/components/manage/management-list/management-list.component.html + 20 + + + src/app/components/manage/management-list/management-list.component.html + 20 + + + src/app/components/manage/management-list/management-list.component.html + 20 + + Filter by: + + + Matching + + src/app/components/manage/management-list/management-list.component.html + 39 + + + src/app/components/manage/management-list/management-list.component.html + 39 + + + src/app/components/manage/management-list/management-list.component.html + 39 + + + src/app/components/manage/management-list/management-list.component.html + 39 + + Matching + + + Document count + + src/app/components/manage/management-list/management-list.component.html + 40 + + + src/app/components/manage/management-list/management-list.component.html + 40 + + + src/app/components/manage/management-list/management-list.component.html + 40 + + + src/app/components/manage/management-list/management-list.component.html + 40 + + Document count + + + {VAR_PLURAL, plural, =1 {One } other { total }} + + src/app/components/manage/management-list/management-list.component.html + 67 + + + src/app/components/manage/management-list/management-list.component.html + 67 + + + src/app/components/manage/management-list/management-list.component.html + 67 + + + src/app/components/manage/management-list/management-list.component.html + 67 + + {VAR_PLURAL, plural, =1 {One } other { total }} + + + Automatic + + src/app/components/manage/management-list/management-list.component.ts + 118 + + + src/app/data/matching-model.ts + 15 + + Automatic + + + Successfully created . + + src/app/components/manage/management-list/management-list.component.ts + 196 + + Successfully created . + + + Error occurred while creating . + + src/app/components/manage/management-list/management-list.component.ts + 201 + + Error occurred while creating . + + + Successfully updated "". + + src/app/components/manage/management-list/management-list.component.ts + 216 + + Successfully updated "". + + + Error occurred while saving . + + src/app/components/manage/management-list/management-list.component.ts + 221 + + Error occurred while saving . + + + Associated documents will not be deleted. + + src/app/components/manage/management-list/management-list.component.ts + 241 + + Associated documents will not be deleted. + + + Error while deleting element + + src/app/components/manage/management-list/management-list.component.ts + 257 + + Error while deleting element + + + Permissions updated successfully + + src/app/components/manage/management-list/management-list.component.ts + 342 + + Permissions updated successfully + + + This operation will permanently delete all objects. + + src/app/components/manage/management-list/management-list.component.ts + 363 + + This operation will permanently delete all objects. + + + Objects deleted successfully + + src/app/components/manage/management-list/management-list.component.ts + 377 + + Objects deleted successfully + + + Error deleting objects + + src/app/components/manage/management-list/management-list.component.ts + 383 + + Error deleting objects + + + Customize the views of your documents. + + src/app/components/manage/saved-views/saved-views.component.html + 4 + + Customize the views of your documents. + + + Documents page size + + src/app/components/manage/saved-views/saved-views.component.html + 41 + + Documents page size + + + Display as + + src/app/components/manage/saved-views/saved-views.component.html + 44 + + Display as + + + Table + + src/app/components/manage/saved-views/saved-views.component.html + 46 + + Table + + + Small Cards + + src/app/components/manage/saved-views/saved-views.component.html + 47 + + Small Cards + + + Large Cards + + src/app/components/manage/saved-views/saved-views.component.html + 48 + + Large Cards + + + No saved views defined. + + src/app/components/manage/saved-views/saved-views.component.html + 61 + + No saved views defined. + + + Saved view "" deleted. + + src/app/components/manage/saved-views/saved-views.component.ts + 133 + + Saved view "" deleted. + + + Views saved successfully. + + src/app/components/manage/saved-views/saved-views.component.ts + 158 + + Views saved successfully. + + + Error while saving views. + + src/app/components/manage/saved-views/saved-views.component.ts + 163 + + Error while saving views. + + + storage path + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 45 + + storage path + + + storage paths + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 46 + + storage paths + + + Do you really want to delete the storage path ""? + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 62 + + Do you really want to delete the storage path ""? + + + tag + + src/app/components/manage/tag-list/tag-list.component.ts + 45 + + tag + + + tags + + src/app/components/manage/tag-list/tag-list.component.ts + 46 + + tags + + + Do you really want to delete the tag ""? + + src/app/components/manage/tag-list/tag-list.component.ts + 61 + + Do you really want to delete the tag ""? + + + Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow. + + src/app/components/manage/workflows/workflows.component.html + 4 + + Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow. + + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 9 + + Add Workflow + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 80 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 90 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 98 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 131 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 132 + + This operation will permanently delete this workflow. + + + Deleted workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 142 + + Deleted workflow "". + + + Error deleting workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 149 + + Error deleting workflow "". + + + Enabled workflow "" + + src/app/components/manage/workflows/workflows.component.ts + 162 + + Enabled workflow "" + + + Disabled workflow "" + + src/app/components/manage/workflows/workflows.component.ts + 163 + + Disabled workflow "" + + + Error toggling workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 170 + + Error toggling workflow "". + + + Not Found + + src/app/components/not-found/not-found.component.html + 6 + + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 9 + + Go to Dashboard + + + Equal to + + src/app/data/custom-field-query.ts + 24 + + Equal to + + + In + + src/app/data/custom-field-query.ts + 25 + + In + + + Is null + + src/app/data/custom-field-query.ts + 26 + + Is null + + + Exists + + src/app/data/custom-field-query.ts + 27 + + Exists + + + Contains + + src/app/data/custom-field-query.ts + 28 + + Contains + + + Contains (case-insensitive) + + src/app/data/custom-field-query.ts + 29 + + Contains (case-insensitive) + + + Greater than + + src/app/data/custom-field-query.ts + 30 + + Greater than + + + Greater than or equal to + + src/app/data/custom-field-query.ts + 31 + + Greater than or equal to + + + Less than + + src/app/data/custom-field-query.ts + 32 + + Less than + + + Less than or equal to + + src/app/data/custom-field-query.ts + 33 + + Less than or equal to + + + Range + + src/app/data/custom-field-query.ts + 34 + + Range + + + Boolean + + src/app/data/custom-field.ts + 19 + + Boolean + + + Date + + src/app/data/custom-field.ts + 23 + + Date + + + Integer + + src/app/data/custom-field.ts + 27 + + Integer + + + Number + + src/app/data/custom-field.ts + 31 + + Number + + + Monetary + + src/app/data/custom-field.ts + 35 + + Monetary + + + Text + + src/app/data/custom-field.ts + 39 + + Text + + + Url + + src/app/data/custom-field.ts + 43 + + Url + + + Document Link + + src/app/data/custom-field.ts + 47 + + Document Link + + + Long Text + + src/app/data/custom-field.ts + 55 + + Long Text + + + Search score + + src/app/data/document.ts + 103 + + Score is a value returned by the full text search engine and specifies how well a result matches the given query + Search score + + + Auto: Learn matching automatically + + src/app/data/matching-model.ts + 16 + + Auto: Learn matching automatically + + + Any word + + src/app/data/matching-model.ts + 20 + + Any word + + + Any: Document contains any of these words (space separated) + + src/app/data/matching-model.ts + 21 + + Any: Document contains any of these words (space separated) + + + All words + + src/app/data/matching-model.ts + 25 + + All words + + + All: Document contains all of these words (space separated) + + src/app/data/matching-model.ts + 26 + + All: Document contains all of these words (space separated) + + + Exact match + + src/app/data/matching-model.ts + 30 + + Exact match + + + Exact: Document contains this string + + src/app/data/matching-model.ts + 31 + + Exact: Document contains this string + + + Regular expression + + src/app/data/matching-model.ts + 35 + + Regular expression + + + Regular expression: Document matches this regular expression + + src/app/data/matching-model.ts + 36 + + Regular expression: Document matches this regular expression + + + Fuzzy word + + src/app/data/matching-model.ts + 40 + + Fuzzy word + + + Fuzzy: Document contains a word similar to this word + + src/app/data/matching-model.ts + 41 + + Fuzzy: Document contains a word similar to this word + + + None: Disable matching + + src/app/data/matching-model.ts + 46 + + None: Disable matching + + + General Settings + + src/app/data/paperless-config.ts + 50 + + General Settings + + + OCR Settings + + src/app/data/paperless-config.ts + 51 + + OCR Settings + + + Barcode Settings + + src/app/data/paperless-config.ts + 52 + + Barcode Settings + + + Output Type + + src/app/data/paperless-config.ts + 76 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 84 + + Language + + + Mode + + src/app/data/paperless-config.ts + 98 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 106 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 114 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 121 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 129 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 136 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 143 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 150 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 157 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 165 + + OCR Arguments + + + Application Logo + + src/app/data/paperless-config.ts + 172 + + Application Logo + + + Application Title + + src/app/data/paperless-config.ts + 179 + + Application Title + + + Enable Barcodes + + src/app/data/paperless-config.ts + 186 + + Enable Barcodes + + + Enable TIFF Support + + src/app/data/paperless-config.ts + 193 + + Enable TIFF Support + + + Barcode String + + src/app/data/paperless-config.ts + 200 + + Barcode String + + + Retain Split Pages + + src/app/data/paperless-config.ts + 207 + + Retain Split Pages + + + Enable ASN + + src/app/data/paperless-config.ts + 214 + + Enable ASN + + + ASN Prefix + + src/app/data/paperless-config.ts + 221 + + ASN Prefix + + + Upscale + + src/app/data/paperless-config.ts + 228 + + Upscale + + + DPI + + src/app/data/paperless-config.ts + 235 + + DPI + + + Max Pages + + src/app/data/paperless-config.ts + 242 + + Max Pages + + + Enable Tag Detection + + src/app/data/paperless-config.ts + 249 + + Enable Tag Detection + + + Tag Mapping + + src/app/data/paperless-config.ts + 256 + + Tag Mapping + + + Warning: You have unsaved changes to your document(s). + + src/app/guards/dirty-doc.guard.ts + 16 + + Warning: You have unsaved changes to your document(s). + + + Unsaved Changes + + src/app/guards/dirty-form.guard.ts + 15 + + + src/app/guards/dirty-saved-view.guard.ts + 27 + + + src/app/services/open-documents.service.ts + 122 + + + src/app/services/open-documents.service.ts + 149 + + Unsaved Changes + + + You have unsaved changes. + + src/app/guards/dirty-form.guard.ts + 16 + + + src/app/services/open-documents.service.ts + 150 + + You have unsaved changes. + + + Are you sure you want to leave? + + src/app/guards/dirty-form.guard.ts + 17 + + Are you sure you want to leave? + + + Leave page + + src/app/guards/dirty-form.guard.ts + 19 + + Leave page + + + You have unsaved changes to the saved view + + src/app/guards/dirty-saved-view.guard.ts + 29 + + You have unsaved changes to the saved view + + + Are you sure you want to close this saved view? + + src/app/guards/dirty-saved-view.guard.ts + 33 + + Are you sure you want to close this saved view? + + + Save and close + + src/app/guards/dirty-saved-view.guard.ts + 37 + + Save and close + + + You don't have permissions to do that + + src/app/guards/permissions.guard.ts + 34 + + You don't have permissions to do that + + + Last year + + src/app/pipes/custom-date.pipe.ts + 14 + + Last year + + + %s years ago + + src/app/pipes/custom-date.pipe.ts + 15 + + %s years ago + + + Last month + + src/app/pipes/custom-date.pipe.ts + 19 + + Last month + + + %s months ago + + src/app/pipes/custom-date.pipe.ts + 20 + + %s months ago + + + Last week + + src/app/pipes/custom-date.pipe.ts + 24 + + Last week + + + %s weeks ago + + src/app/pipes/custom-date.pipe.ts + 25 + + %s weeks ago + + + %s days ago + + src/app/pipes/custom-date.pipe.ts + 30 + + %s days ago + + + %s hour ago + + src/app/pipes/custom-date.pipe.ts + 34 + + %s hour ago + + + %s hours ago + + src/app/pipes/custom-date.pipe.ts + 35 + + %s hours ago + + + %s minute ago + + src/app/pipes/custom-date.pipe.ts + 39 + + %s minute ago + + + %s minutes ago + + src/app/pipes/custom-date.pipe.ts + 40 + + %s minutes ago + + + Just now + + src/app/pipes/custom-date.pipe.ts + 73 + + Just now + + + (no title) + + src/app/pipes/document-title.pipe.ts + 11 + + (no title) + + + You have unsaved changes to the document + + src/app/services/open-documents.service.ts + 124 + + You have unsaved changes to the document + + + Are you sure you want to close this document? + + src/app/services/open-documents.service.ts + 128 + + Are you sure you want to close this document? + + + Are you sure you want to close all documents? + + src/app/services/open-documents.service.ts + 151 + + Are you sure you want to close all documents? + + + Close documents + + src/app/services/open-documents.service.ts + 153 + + Close documents + + + English (US) + + src/app/services/settings.service.ts + 51 + + English (US) + + + Afrikaans + + src/app/services/settings.service.ts + 57 + + Afrikaans + + + Arabic + + src/app/services/settings.service.ts + 63 + + Arabic + + + Belarusian + + src/app/services/settings.service.ts + 69 + + Belarusian + + + Bulgarian + + src/app/services/settings.service.ts + 75 + + Bulgarian + + + Catalan + + src/app/services/settings.service.ts + 81 + + Catalan + + + Czech + + src/app/services/settings.service.ts + 87 + + Czech + + + Danish + + src/app/services/settings.service.ts + 93 + + Danish + + + German + + src/app/services/settings.service.ts + 99 + + German + + + Greek + + src/app/services/settings.service.ts + 105 + + Greek + + + English (GB) + + src/app/services/settings.service.ts + 111 + + English (GB) + + + Spanish + + src/app/services/settings.service.ts + 117 + + Spanish + + + Finnish + + src/app/services/settings.service.ts + 123 + + Finnish + + + French + + src/app/services/settings.service.ts + 129 + + French + + + Hungarian + + src/app/services/settings.service.ts + 135 + + Hungarian + + + Italian + + src/app/services/settings.service.ts + 141 + + Italian + + + Japanese + + src/app/services/settings.service.ts + 147 + + Japanese + + + Korean + + src/app/services/settings.service.ts + 153 + + Korean + + + Luxembourgish + + src/app/services/settings.service.ts + 159 + + Luxembourgish + + + Dutch + + src/app/services/settings.service.ts + 165 + + Dutch + + + Norwegian + + src/app/services/settings.service.ts + 171 + + Norwegian + + + Persian + + src/app/services/settings.service.ts + 177 + + Persian + + + Polish + + src/app/services/settings.service.ts + 183 + + Polish + + + Portuguese (Brazil) + + src/app/services/settings.service.ts + 189 + + Portuguese (Brazil) + + + Portuguese + + src/app/services/settings.service.ts + 195 + + Portuguese + + + Romanian + + src/app/services/settings.service.ts + 201 + + Romanian + + + Russian + + src/app/services/settings.service.ts + 207 + + Russian + + + Slovak + + src/app/services/settings.service.ts + 213 + + Slovak + + + Slovenian + + src/app/services/settings.service.ts + 219 + + Slovenian + + + Serbian + + src/app/services/settings.service.ts + 225 + + Serbian + + + Swedish + + src/app/services/settings.service.ts + 231 + + Swedish + + + Turkish + + src/app/services/settings.service.ts + 237 + + Turkish + + + Ukrainian + + src/app/services/settings.service.ts + 243 + + Ukrainian + + + Vietnamese + + src/app/services/settings.service.ts + 249 + + Vietnamese + + + Chinese Simplified + + src/app/services/settings.service.ts + 255 + + Chinese Simplified + + + Chinese Traditional + + src/app/services/settings.service.ts + 261 + + Chinese Traditional + + + ISO 8601 + + src/app/services/settings.service.ts + 269 + + ISO 8601 + + + Successfully completed one-time migratration of settings to the database! + + src/app/services/settings.service.ts + 603 + + Successfully completed one-time migratration of settings to the database! + + + Unable to migrate settings to the database, please try saving manually. + + src/app/services/settings.service.ts + 604 + + Unable to migrate settings to the database, please try saving manually. + + + You can restart the tour from the settings page. + + src/app/services/settings.service.ts + 677 + + You can restart the tour from the settings page. + + + Connecting... + + src/app/services/upload-documents.service.ts + 25 + + Connecting... + + + Uploading... + + src/app/services/upload-documents.service.ts + 37 + + Uploading... + + + Upload complete, waiting... + + src/app/services/upload-documents.service.ts + 40 + + Upload complete, waiting... + + + HTTP error: + + src/app/services/upload-documents.service.ts + 53 + + HTTP error: + + + Document already exists. + + src/app/services/websocket-status.service.ts + 24 + + Document already exists. + + + Document already exists. Note: existing document is in the trash. + + src/app/services/websocket-status.service.ts + 25 + + Document already exists. Note: existing document is in the trash. + + + Document with ASN already exists. + + src/app/services/websocket-status.service.ts + 26 + + Document with ASN already exists. + + + Document with ASN already exists. Note: existing document is in the trash. + + src/app/services/websocket-status.service.ts + 27 + + Document with ASN already exists. Note: existing document is in the trash. + + + File not found. + + src/app/services/websocket-status.service.ts + 28 + + File not found. + + + Pre-consume script does not exist. + + src/app/services/websocket-status.service.ts + 29 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-consume script does not exist. + + + Error while executing pre-consume script. + + src/app/services/websocket-status.service.ts + 30 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing pre-consume script. + + + Post-consume script does not exist. + + src/app/services/websocket-status.service.ts + 31 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-consume script does not exist. + + + Error while executing post-consume script. + + src/app/services/websocket-status.service.ts + 32 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing post-consume script. + + + Received new file. + + src/app/services/websocket-status.service.ts + 33 + + Received new file. + + + File type not supported. + + src/app/services/websocket-status.service.ts + 34 + + File type not supported. + + + Processing document... + + src/app/services/websocket-status.service.ts + 35 + + Processing document... + + + Generating thumbnail... + + src/app/services/websocket-status.service.ts + 36 + + Generating thumbnail... + + + Retrieving date from document... + + src/app/services/websocket-status.service.ts + 37 + + Retrieving date from document... + + + Saving document... + + src/app/services/websocket-status.service.ts + 38 + + Saving document... + + + Finished. + + src/app/services/websocket-status.service.ts + 39 + + Finished. + + + + diff --git a/src-ui/src/locale/messages.ms_MY.xlf b/src-ui/src/locale/messages.ms_MY.xlf index 249650d43..753b335bd 100644 --- a/src-ui/src/locale/messages.ms_MY.xlf +++ b/src-ui/src/locale/messages.ms_MY.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index 960fd6a2a..4db95e43b 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Wachtwoord is gewijzigd, je wordt zo uitgelogd. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profiel succesvol bijgewerkt @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Fout bij opslaan profiel @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Fout bij genereren authenticatie token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Fout bij ontkoppelen van sociaal account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Fout bij ophalen TOTP instellingen @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP succesvol ingeschakeld @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Fout bij inschakelen TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP is succesvol uitgeschakeld @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Fout bij uitschakelen TOTP diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index 4e21185b7..71152f5f9 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Passordet har blitt endret, du vil bli logget ut øyeblikkelig. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index f91f903c9..ee670d97c 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -764,7 +764,7 @@ src/app/components/admin/logs/logs.component.html 17 - lines + linie Auto refresh @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Hasło zostało zmienione, zostaniesz natychmiast wylogowany. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil został pomyślnie zaktualizowany @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Błąd podczas zapisywania profilu @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Błąd generowania tokenu autoryzacyjnego @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Błąd rozłączania konta społecznościowego @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Błąd pobierania ustawień TOTP @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP aktywowany pomyślnie @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Błąd aktywacji TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP dezaktywowany pomyślnie @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Błąd dezaktywacji TOTP @@ -8699,7 +8699,7 @@ src/app/components/document-list/document-list.component.html 18 - Select: + Wybierz: None diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index 80157c66f..db5520eff 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 A senha foi alterada, você será deslogado momentaneamente. @@ -6645,7 +6645,7 @@ Erro ao enviar documentos por e-mail Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Perfil atualizado com sucesso @@ -6653,7 +6653,7 @@ Erro ao enviar documentos por e-mail Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Erro ao salvar o perfil @@ -6661,7 +6661,7 @@ Erro ao enviar documentos por e-mail Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Erro ao gerar token de autenticação @@ -6669,7 +6669,7 @@ Erro ao enviar documentos por e-mail Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Erro ao desconectar conta de rede social @@ -6677,7 +6677,7 @@ Erro ao enviar documentos por e-mail Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Erro ao obter configurações TOTP @@ -6685,7 +6685,7 @@ Erro ao enviar documentos por e-mail TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP ativado com sucesso @@ -6693,11 +6693,11 @@ Erro ao enviar documentos por e-mail Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Erro ao ativar TOTP @@ -6705,7 +6705,7 @@ Erro ao enviar documentos por e-mail TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP desativado com sucesso @@ -6713,11 +6713,11 @@ Erro ao enviar documentos por e-mail Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Erro ao desativar TOTP diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index 68f13e7fb..b05bd0fd6 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 A palavra passe foi alterada, terá a sessão atual terminada daqui a nada. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index 8f695339e..302a90854 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Parola a fost schimbată, vei fi deconectat momentan. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index c3df92c26..40e49cb17 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Пароль был изменен, повторите вход в учетную запись. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Профиль успешно обновлен @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Ошибка при сохранении профиля @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Ошибка создания токена авторизации @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Ошибка при отключении стороннего сервиса @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Ошибка получения настроек TOTP @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP успешно активирован @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Ошибка активации TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP успешно деактивирован @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Ошибка деактивации TOTP diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf index ffd1b6eec..dd85de97a 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Heslo bolo zmenené, ihneď prebehne odhlásenie. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index c1ece21d0..63fd2d0d7 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -764,7 +764,7 @@ src/app/components/admin/logs/logs.component.html 17 - lines + vrstice Auto refresh @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Geslo je bilo spremenjeno, kmalu boste za trenutek odjavljeni. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil uspešno posodobljen @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Napaka pri shranjevanju profila @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Napaka pri generiranju avtorizacijskega žetona @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Napaka pri odstranjevanju računa družabnega omrežja @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Napaka pri pridobivanju nastavitev TOTP @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP je bil uspešno aktiviran @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Napaka pri aktiviranju TOTP-ja @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP je bil uspešno deaktiviran @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Napaka pri deaktiviranju TOTP-ja @@ -8700,7 +8700,7 @@ src/app/components/document-list/document-list.component.html 18 - Select: + Izberite: None diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index 7b27e72ed..e1079cb28 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -764,7 +764,7 @@ src/app/components/admin/logs/logs.component.html 17 - lines + linije Auto refresh @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Lozinka je promenjena, bićete odjavljeni trenutno. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil je uspešno ažuriran @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Greška prilikom čuvanja profila @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Greška prilikom generisanja auth tokena @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Greška prilikom isključivanja naloga @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Greška pri preuzimanju TOTP podešavanja @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP je uspešno aktiviran @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Greška pri aktiviranju TOTP-a @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP je uspešno deaktiviran @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Greška pri deaktiviranju TOTP-a @@ -8701,7 +8701,7 @@ src/app/components/document-list/document-list.component.html 18 - Select: + Odaberi: None diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index d6a80d948..480ab2ed3 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Lösenordet har ändrats, du kommer att tillfälligt loggas ut. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf index e1d2f53c6..45ec44995 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index 784b4fc79..efedef8ad 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Parola değiştirildi, otomatik olarak çıkış yapılacak. @@ -6646,7 +6646,7 @@ tüm krite Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil başarıyla güncellendi @@ -6654,7 +6654,7 @@ tüm krite Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6662,7 +6662,7 @@ tüm krite Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6670,7 +6670,7 @@ tüm krite Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6678,7 +6678,7 @@ tüm krite Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6686,7 +6686,7 @@ tüm krite TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6694,11 +6694,11 @@ tüm krite Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6706,7 +6706,7 @@ tüm krite TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6714,11 +6714,11 @@ tüm krite Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf index e6d8452d4..cdf862584 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Пароль змінено, ви миттєво вийдете з системи. @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Обліковий запис успішно оновлено @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Помилка збереження профілю @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Помилка генерації токена авторизації @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Помилка від'єднання акаунта соціальної мережі @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Помилка отримання налаштувань TOTP @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP успішно активовано @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Помилка активації TOTP @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP успішно деактивовано @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Помилка деактивації TOTP diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf index 3dd3d0a02..aba0a20b8 100644 --- a/src-ui/src/locale/messages.vi_VN.xlf +++ b/src-ui/src/locale/messages.vi_VN.xlf @@ -3208,7 +3208,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Mật khẩu đã đổi, bạn sẽ được logout sau đây @@ -7805,7 +7805,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Hồ sơ cập nhật thành công @@ -7815,7 +7815,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Hồ sơ lưu lỗi @@ -7825,7 +7825,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Lỗi tạo mã thông báo auth @@ -7835,7 +7835,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Lỗi ngắt kết nối tài khoản xã hội @@ -7845,7 +7845,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Lỗi tìm nạp cài đặt TOTP @@ -7855,7 +7855,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP kích hoạt thành công @@ -7865,11 +7865,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Lỗi kích hoạt TOTP @@ -7879,7 +7879,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP đã vô hiệu hóa thành công @@ -7889,11 +7889,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Lỗi hủy kích hoạt TOTP diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index 5bf7bef8e..5db259e13 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 密码已更改,您将会被立即注销。 @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 帐户信息更新成功 @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 保存帐户信息时发生错误 @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 生成验证令牌时发生错误 @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 断开社交账户时发生错误 @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 獲取TOTP 設定時出錯 @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP 啟動成功 @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 啟動TOTP時錯誤 @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP 停用成功 @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 停用TOTP時錯誤 diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index 0d41908f4..76738304d 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -2766,7 +2766,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 密碼已變更,將於稍後登出。 @@ -6644,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 設定檔更新成功 @@ -6652,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 儲存設定檔時發生錯誤 @@ -6660,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 產生驗證 Token 時發生錯誤 @@ -6668,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 連接社群帳號時發生錯誤 @@ -6676,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 擷取 TOTP 時發生錯誤 @@ -6684,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP 啟用成功 @@ -6692,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 啟用 TOTP 時發生錯誤 @@ -6704,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP 停用成功 @@ -6712,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 停用 TOTP 時發生錯誤 diff --git a/src/locale/af_ZA/LC_MESSAGES/django.po b/src/locale/af_ZA/LC_MESSAGES/django.po index 2140ae0af..81d1857f2 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Afrikaans\n" "Language: af_ZA\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumente" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Waarde moet geldige JSON wees." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Ongeldige gepasmaakte veldnavraaguitdrukking" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Ongeldige uitdrukking lys. Moet nie leeg wees nie." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Ongeldige logiese uitdrukking {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" diff --git a/src/locale/ar_AR/LC_MESSAGES/django.po b/src/locale/ar_AR/LC_MESSAGES/django.po index 705ec2f38..401718cfd 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Arabic\n" "Language: ar_SA\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "المستندات" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "يجب أن تكون القيمة JSON." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "تجاوز الحد الأقصى لعدد شروط الاستعلام." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} حقل مخصص غير صالح." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "لم يتم العثور على حقل مخصص" diff --git a/src/locale/be_BY/LC_MESSAGES/django.po b/src/locale/be_BY/LC_MESSAGES/django.po index 654debc96..7d6930b1f 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Belarusian\n" "Language: be_BY\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Дакументы" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" diff --git a/src/locale/bg_BG/LC_MESSAGES/django.po b/src/locale/bg_BG/LC_MESSAGES/django.po index b7de8e656..f05719365 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Language: bg_BG\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Документи" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Стойността трябва да е валидна JSON." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Невалидна заявка на персонализираното полето" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Списък с невалиден израз. Не може да е празно." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Невалиден логически оператор {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Надвишен е максимален брой за заявки." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} не е валидно персонализирано поле." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} не поддържа заявка expr {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Надвишена е максималната дълбочина на вмъкване." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Персонализирано поле не е намерено" diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po index b74843ada..a88c82430 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-11-04 12:15\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Language: ca_ES\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documents " -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Valor ha de ser un JSON valid." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Expressió de camp de consulta invàlid" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Expressió de llista invàlida. No ha d'estar buida." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Invàlid operand lògic {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Condicions de consulta excedits." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} no és un camp personalitzat vàlid." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} no suporta expressió de consulta {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Màxima profunditat anidada excedida." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Camp personalitzat no trobat" diff --git a/src/locale/cs_CZ/LC_MESSAGES/django.po b/src/locale/cs_CZ/LC_MESSAGES/django.po index 05a383673..f6aa7f408 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Czech\n" "Language: cs_CZ\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenty" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Hodnota musí být platný JSON." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Neplatný výraz dotazu na vlastní pole" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Neplatný seznam výrazů. Nesmí být prázdný." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Neplatný logický operátor {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Překročen maximální počet podmínek dotazu." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} není platné vlastní pole." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} nepodporuje výraz dotazu {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Překročena maximální hloubka větvení." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Vlastní pole nebylo nalezeno" diff --git a/src/locale/da_DK/LC_MESSAGES/django.po b/src/locale/da_DK/LC_MESSAGES/django.po index 06a964d01..d2452f2d6 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Danish\n" "Language: da_DK\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenter" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Værdien skal være gyldig JSON." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Ugyldigt tilpasset feltforespørgselsudtryk" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Ugyldig udtryksliste. Må ikke være tom." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Ugyldig logisk operatør {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Maksimalt antal forespørgselsbetingelser overskredet." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} er ikke et gyldigt tilpasset felt." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} understøtter ikke forespørgsel expr {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Maksimal indlejringsdybde overskredet." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Tilpasset felt ikke fundet" diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index 9dd615c85..6b1c27c7b 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-11-06 00:35\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumente" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Wert muss gültiges JSON sein." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Ungültiger benutzerdefinierter Feldabfrageausdruck" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Ungültige Ausdrucksliste. Darf nicht leer sein." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Ungültiger logischer Operator {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Maximale Anzahl an Abfragebedingungen überschritten." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} ist kein gültiges benutzerdefiniertes Feld." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} unterstützt den Abfrageausdruck {expr!r} nicht." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Maximale Verschachtelungstiefe überschritten." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Benutzerdefiniertes Feld nicht gefunden" diff --git a/src/locale/el_GR/LC_MESSAGES/django.po b/src/locale/el_GR/LC_MESSAGES/django.po index 5d4bbef1d..3acad218d 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Greek\n" "Language: el_GR\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Έγγραφα" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Η τιμή πρέπει να είναι σε έγκυρη μορφή JSON." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Μη έγκυρη έκφραση προσαρμοσμένου ερωτήματος πεδίου" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Μη έγκυρη λίστα έκφρασης. Πρέπει να είναι μη κενή." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Μη έγκυρος λογικός τελεστής {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Υπέρβαση μέγιστου αριθμού συνθηκών ερωτήματος." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "Το προσαρμοσμένο πεδίο {name!r} δεν είναι ένα έγκυρο." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "Το {data_type} δεν υποστηρίζει το ερώτημα expr {expr!r}s." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Υπέρβαση μέγιστου βάθους εμφώλευσης." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Το προσαρμοσμένο πεδίο δε βρέθηκε" diff --git a/src/locale/es_ES/LC_MESSAGES/django.po b/src/locale/es_ES/LC_MESSAGES/django.po index f90e38ca5..7a1b970bb 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documentos" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "El valor debe ser JSON válido." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Expresión de consulta de campo personalizado no válida" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Lista de expresiones no válida. No debe estar vacía." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Operador lógico inválido {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Se ha superado el número máximo de condiciones de consulta." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{nombre!r} no es un campo personalizado válido." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} no admite la consulta expr {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Profundidad máxima de nidificación superada." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Campo personalizado no encontrado" diff --git a/src/locale/et_EE/LC_MESSAGES/django.po b/src/locale/et_EE/LC_MESSAGES/django.po index 2fb8be57a..08358db78 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Estonian\n" "Language: et_EE\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumendid" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Väärtus peab olema lubatav JSON." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Vigane kohandatud välja päringu avaldis" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Vigane avaldiste loend. Peab olema mittetühi." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Vigane loogikaoperaator {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Päringutingimuste suurim hulk on ületatud." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} ei ole lubatud kohandatud väli." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} ei toeta päringu avaldist {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Suurim pesastamis sügavus ületatud." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Kohandatud välja ei leitud" diff --git a/src/locale/fa_IR/LC_MESSAGES/django.po b/src/locale/fa_IR/LC_MESSAGES/django.po index b77e6681f..00a02cebe 100644 --- a/src/locale/fa_IR/LC_MESSAGES/django.po +++ b/src/locale/fa_IR/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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Persian\n" "Language: fa_IR\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "اسناد و مدارک" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "مقدار باید JSON معتبر باشد." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Invalid custom field query expression" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "حداکثر تعداد شرایط پرس و جو از آن فراتر رفته است." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{نام! R} یک زمینه سفارشی معتبر نیست." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "زمینه سفارشی یافت نشد" diff --git a/src/locale/fi_FI/LC_MESSAGES/django.po b/src/locale/fi_FI/LC_MESSAGES/django.po index 5a2963ce5..a90715bc6 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Language: fi_FI\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Asiakirjat" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Arvon on oltava kelvollista JSON:ia." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po index dfaede9b1..e98fdc37a 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-11-06 12:14\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documents" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "La valeur doit être un JSON valide." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Requête de champ personnalisé invalide" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Liste d’expressions invalide. Doit être non vide." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Opérateur logique {op!r} invalide" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Nombre maximum de conditions de requête dépassé." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} n'est pas un champ personnalisé valide." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} ne supporte pas l'expression {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Profondeur de récursion maximale dépassée." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Champ personnalisé non trouvé" diff --git a/src/locale/he_IL/LC_MESSAGES/django.po b/src/locale/he_IL/LC_MESSAGES/django.po index 7e3345d48..709ed503e 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Language: he_IL\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "מסמכים" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "ערך מוכרך להיות JSON תקין." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "ביטוי שאילתה לא חוקי של שדה מותאם אישית" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "רשימת ביטויים לא חוקית. מוכרך לכלול ערך." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "סימן פעולה לוגית לא חוקי {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "חריגה ממספר תנאי השאילתה המרבי." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} הוא לא שדה מותאם אישית חוקי." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} לא תומך בביטוי שאילתה {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "חריגה מעומק הקינון המרבי." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "שדה מותאם אישית לא נמצא" diff --git a/src/locale/hr_HR/LC_MESSAGES/django.po b/src/locale/hr_HR/LC_MESSAGES/django.po index 00d8a91eb..58659d5f9 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Croatian\n" "Language: hr_HR\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenti" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" diff --git a/src/locale/hu_HU/LC_MESSAGES/django.po b/src/locale/hu_HU/LC_MESSAGES/django.po index 133e28e2c..3f2cc38df 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumentumok" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." -msgstr "Érvényes JSON érték szükséges" +msgstr "Érvényes JSON érték szükséges." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Érvénytelen egyéni mező lekérdezési kifejezés" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Érvénytelen kifejezéslista. Nem lehet üres." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Érvénytelen logikai operátor {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Maximum lekérdezési feltételszám átlépve." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} nem érvényes egyéni mező." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." -msgstr "{data_type} nem támogatja a(z) {expr!r} lekérdezési kifejezést." +msgstr "A(z) {data_type} nem támogatja a {expr!r} kifejezés lekérdezést." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Maximum beágyazási mélység túllépve." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Az egyéni mező nem található" @@ -136,11 +136,11 @@ msgstr "címkék" #: documents/models.py:123 msgid "Cannot set itself as parent." -msgstr "" +msgstr "Nem állíthatja be magát szülőként." #: documents/models.py:125 msgid "Cannot set parent to a descendant." -msgstr "" +msgstr "Nem lehet szülőt beállítani egy leszármazotthoz." #: documents/models.py:142 documents/models.py:190 msgid "document type" @@ -758,7 +758,7 @@ msgstr "Válassz" #: documents/models.py:795 msgid "Long Text" -msgstr "" +msgstr "Hosszú szöveg" #: documents/models.py:807 msgid "data type" @@ -858,11 +858,11 @@ msgstr "ezekkel a címkékkel rendelkezik" #: documents/models.py:1072 msgid "has all of these tag(s)" -msgstr "" +msgstr "ezen címke(ék) mindegyikét tartalmazza" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "" +msgstr "nem tartalmazza ezt a címkét vagy címéket" #: documents/models.py:1087 msgid "has this document type" @@ -870,7 +870,7 @@ msgstr "ez a dokumentumtípusa" #: documents/models.py:1094 msgid "does not have these document type(s)" -msgstr "" +msgstr "nem rendelkezik dokumentumtípussal a" #: documents/models.py:1102 msgid "has this correspondent" @@ -878,23 +878,23 @@ msgstr "ez a levelezőpartner" #: documents/models.py:1109 msgid "does not have these correspondent(s)" -msgstr "" +msgstr "nincs ilyen levelezőpartner(ek).\"" #: documents/models.py:1117 msgid "has this storage path" -msgstr "" +msgstr "rendelkezik ezzel a tárolási útvonallal" #: documents/models.py:1124 msgid "does not have these storage path(s)" -msgstr "" +msgstr "nem rendelkezik ezzel a tárolási útvonallal" #: documents/models.py:1128 msgid "filter custom field query" -msgstr "" +msgstr "egyéni mező a lekérdezés szűrésére" #: documents/models.py:1131 msgid "JSON-encoded custom field query expression." -msgstr "" +msgstr "JSON-kódolású egyéni mező lekérdezési kifejezés." #: documents/models.py:1135 msgid "schedule offset days" @@ -1038,7 +1038,7 @@ msgstr "cím hozzárendelése" #: documents/models.py:1302 msgid "Assign a document title, must be a Jinja2 template, see documentation." -msgstr "" +msgstr "Dokumentumcím hozzárendelése, amelynek Jinja2 sablonnak kell lennie, lásd a dokumentációt." #: documents/models.py:1310 paperless_mail/models.py:274 msgid "assign this tag" @@ -1225,20 +1225,20 @@ msgstr "Fájltípus %(type)s nem támogatott" #: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" -msgstr "" +msgstr "Az egyéni mező azonosítójának egész számnak kell lennie: %(id)s" #: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" -msgstr "" +msgstr "A(z) %(id)s azonosítójú egyéni mező nem létezik" #: documents/serialisers.py:1873 documents/serialisers.py:1883 msgid "Custom fields must be a list of integers or an object mapping ids to values." -msgstr "" +msgstr "Az egyéni mezőknek egész számok listájának vagy azonosítókat értékekhez rendelő objektumnak kell lenniük." #: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." -msgstr "" +msgstr "Néhány egyéni mező nem létezik, vagy kétszer lett megadva." #: documents/serialisers.py:1993 msgid "Invalid variable detected." diff --git a/src/locale/id_ID/LC_MESSAGES/django.po b/src/locale/id_ID/LC_MESSAGES/django.po index 17b069cfc..02e83ae1f 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Language: id_ID\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumen" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Nilai harus berupa JSON yang valid." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Ekspresi pencarian bidang khusus tidak valid" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Daftar ekspresi tidak valid. Tidak boleh kosong." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Operator logika {op!r} tidak valid" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Jumlah maksimal kondisi pencarian terlampaui." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} bukan bidang khusus yang valid." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} tidak mendukung ekspresi pencarian expr {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Kedalaman susunan maksimal terlampaui." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Bidang khusus tidak ditemukan" diff --git a/src/locale/it_IT/LC_MESSAGES/django.po b/src/locale/it_IT/LC_MESSAGES/django.po index f968b48c3..5c5bce0ac 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documenti" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Il valore deve essere un JSON valido." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Campo personalizzato della query non valido" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Elenco delle espressioni non valido. Deve essere non vuoto." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Operatore logico non valido {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Numero massimo delle condizioni della jQuery superato." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} non è un campo personalizzato valido." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} Non supporta la jQuery Expo {Expo!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Superata la profondità massima di nidificazione." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Campo personalizzato non trovato" @@ -858,11 +858,11 @@ msgstr "ha questi tag(s)" #: documents/models.py:1072 msgid "has all of these tag(s)" -msgstr "" +msgstr "ha tutte queste etichette" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "" +msgstr "non ha queste etichette" #: documents/models.py:1087 msgid "has this document type" @@ -870,7 +870,7 @@ msgstr "ha questo tipo di documento" #: documents/models.py:1094 msgid "does not have these document type(s)" -msgstr "" +msgstr "non ha questi tipi di documento" #: documents/models.py:1102 msgid "has this correspondent" @@ -878,7 +878,7 @@ msgstr "ha questo corrispondente" #: documents/models.py:1109 msgid "does not have these correspondent(s)" -msgstr "" +msgstr "non ha questi corrispondenti" #: documents/models.py:1117 msgid "has this storage path" @@ -886,7 +886,7 @@ msgstr "ha questo percorso di archiviazione" #: documents/models.py:1124 msgid "does not have these storage path(s)" -msgstr "" +msgstr "non ha questo percorso di archiviazione" #: documents/models.py:1128 msgid "filter custom field query" @@ -898,7 +898,7 @@ msgstr "" #: documents/models.py:1135 msgid "schedule offset days" -msgstr "" +msgstr "giorni di offset della schedulazione" #: documents/models.py:1138 msgid "The number of days to offset the schedule trigger by." @@ -998,19 +998,19 @@ msgstr "corpo webhook" #: documents/models.py:1253 msgid "The body to send with the webhook URL if parameters not used." -msgstr "" +msgstr "Il corpo da inviare con l'URL del webhook se i parametri non vengono utilizzati." #: documents/models.py:1257 msgid "webhook headers" -msgstr "" +msgstr "header Webhook" #: documents/models.py:1260 msgid "The headers to send with the webhook URL." -msgstr "" +msgstr "Le intestazioni da inviare con l'URL del webhook." #: documents/models.py:1265 msgid "include document in webhook" -msgstr "" +msgstr "includi documento nel webhook" #: documents/models.py:1276 msgid "Assignment" @@ -1038,7 +1038,7 @@ msgstr "assegna titolo" #: documents/models.py:1302 msgid "Assign a document title, must be a Jinja2 template, see documentation." -msgstr "" +msgstr "Assegnare un titolo del documento, deve essere un modello Jinja2, vedere la documentazione." #: documents/models.py:1310 paperless_mail/models.py:274 msgid "assign this tag" @@ -1178,7 +1178,7 @@ msgstr "priorità" #: documents/models.py:1534 msgid "triggers" -msgstr "" +msgstr "trigger" #: documents/models.py:1541 msgid "actions" @@ -1202,11 +1202,11 @@ msgstr "data esecuzione" #: documents/models.py:1579 msgid "workflow run" -msgstr "" +msgstr "esecuzione del workflow" #: documents/models.py:1580 msgid "workflow runs" -msgstr "" +msgstr "esecuzione del workflow" #: documents/serialisers.py:145 #, python-format @@ -1225,20 +1225,20 @@ msgstr "Il tipo di file %(type)s non è supportato" #: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" -msgstr "" +msgstr "L'id del campo personalizzato deve essere un intero: %(id)s" #: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" -msgstr "" +msgstr "Il campo personalizzato con id %(id)s non esiste" #: documents/serialisers.py:1873 documents/serialisers.py:1883 msgid "Custom fields must be a list of integers or an object mapping ids to values." -msgstr "" +msgstr "I campi personalizzati devono essere un elenco di interi o un id di mappatura." #: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." -msgstr "" +msgstr "Alcuni campi personalizzati non esistono o sono stati specificati due volte." #: documents/serialisers.py:1993 msgid "Invalid variable detected." @@ -1482,7 +1482,7 @@ msgstr "Impossibile analizzare l'URI {value}, la posizione di rete o il percorso #: documents/validators.py:36 msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}" -msgstr "" +msgstr "Schema URI '{parts.scheme}' non è consentito. Schemi consentiti: {', '.join(allowed_schemes)}" #: documents/validators.py:45 #, python-brace-format @@ -1599,7 +1599,7 @@ msgstr "Imposta il valore di ripiego DPI dell'immagine" #: paperless/models.py:131 msgid "Controls the unpaper cleaning" -msgstr "" +msgstr "Controlla la pulizia della carta" #: paperless/models.py:138 msgid "Enables deskew" @@ -1635,15 +1635,15 @@ msgstr "Logo applicazione" #: paperless/models.py:197 msgid "Enables barcode scanning" -msgstr "" +msgstr "Abilita scansione codici a barre" #: paperless/models.py:203 msgid "Enables barcode TIFF support" -msgstr "" +msgstr "Abilita il supporto TIFF del codice a barre" #: paperless/models.py:209 msgid "Sets the barcode string" -msgstr "" +msgstr "Imposta la stringa del barcode" #: paperless/models.py:217 msgid "Retains split pages" @@ -1659,11 +1659,11 @@ msgstr "Imposta il prefisso del codice a barre ASN" #: paperless/models.py:237 msgid "Sets the barcode upscale factor" -msgstr "" +msgstr "Imposta il fattore di ingrandimento del codice a barre" #: paperless/models.py:244 msgid "Sets the barcode DPI" -msgstr "" +msgstr "Imposta il DPI codice a barre" #: paperless/models.py:251 msgid "Sets the maximum pages for barcode" @@ -1675,7 +1675,7 @@ msgstr "Abilita tag del codice a barre" #: paperless/models.py:264 msgid "Sets the tag barcode mapping" -msgstr "" +msgstr "Imposta la mappatura dei codici a barre dei tag" #: paperless/models.py:269 msgid "paperless application settings" diff --git a/src/locale/ja_JP/LC_MESSAGES/django.po b/src/locale/ja_JP/LC_MESSAGES/django.po index a0344e845..585880f74 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Language: ja_JP\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "ドキュメント" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "値は有効なJSONである必要があります。" -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "無効なカスタムフィールドクエリ式" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "無効な式リストです。空であってはなりません。" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "無効な論理演算子 {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "クエリ条件の最大数を超えました。" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} は有効なカスタムフィールドではありません。" -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} はクエリ expr {expr!r} をサポートしていません。" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "最大ネストの深さを超えました。" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "カスタムフィールドが見つかりません" diff --git a/src/locale/ko_KR/LC_MESSAGES/django.po b/src/locale/ko_KR/LC_MESSAGES/django.po index d04db9471..62cfede55 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "문서" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "값은 유효한 JSON이어야 합니다." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "잘못된 사용자 정의 필드 쿼리 표현식" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "잘못된 표현식 목록입니다. 비어 있지 않아야 합니다." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "잘못된 논리 연산자 {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "쿼리 조건의 최대 개수를 초과했습니다." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} 은 잘못된 사용자 정의 필드입니다." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type}은 쿼리 표현식 {expr!r}을(를) 지원하지 않습니다." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "최대 중첩 깊이를 초과했습니다." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "사용자 지정 필드를 찾을 수 없음" diff --git a/src/locale/lb_LU/LC_MESSAGES/django.po b/src/locale/lb_LU/LC_MESSAGES/django.po index 69b0afa14..589c2c32c 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Luxembourgish\n" "Language: lb_LU\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenter" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" diff --git a/src/locale/lt_LT/LC_MESSAGES/django.po b/src/locale/lt_LT/LC_MESSAGES/django.po index 9f8f64f0f..4447af87f 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Lithuanian\n" "Language: lt_LT\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumentai" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Neteisingas išraiškos sąrašas. Jis turi būti netuščias." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Neteisingas loginis operatorius {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Viršytas maksimalus užklausos sąlygų skaičius." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} nėra galiojantis pasirinktas laukas." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} nepalaiko užklausos išraiškos {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Viršytas maksimalus įdėjimo gylis." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" diff --git a/src/locale/lv_LV/LC_MESSAGES/django.po b/src/locale/lv_LV/LC_MESSAGES/django.po index 9ad33320a..dbcfea250 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Latvian\n" "Language: lv_LV\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokuments" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" diff --git a/src/locale/mk_MK/LC_MESSAGES/django.po b/src/locale/mk_MK/LC_MESSAGES/django.po new file mode 100644 index 000000000..5f72d7290 --- /dev/null +++ b/src/locale/mk_MK/LC_MESSAGES/django.po @@ -0,0 +1,2154 @@ +msgid "" +msgstr "" +"Project-Id-Version: paperless-ngx\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" +"Last-Translator: \n" +"Language-Team: Macedonian\n" +"Language: mk_MK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n%10==1 && n%100 != 11 ? 0 : 1);\n" +"X-Crowdin-Project: paperless-ngx\n" +"X-Crowdin-Project-ID: 500308\n" +"X-Crowdin-Language: mk\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 14\n" + +#: documents/apps.py:8 +msgid "Documents" +msgstr "" + +#: documents/filters.py:395 +msgid "Value must be valid JSON." +msgstr "" + +#: documents/filters.py:414 +msgid "Invalid custom field query expression" +msgstr "" + +#: documents/filters.py:424 +msgid "Invalid expression list. Must be nonempty." +msgstr "" + +#: documents/filters.py:445 +msgid "Invalid logical operator {op!r}" +msgstr "" + +#: documents/filters.py:459 +msgid "Maximum number of query conditions exceeded." +msgstr "" + +#: documents/filters.py:524 +msgid "{name!r} is not a valid custom field." +msgstr "" + +#: documents/filters.py:561 +msgid "{data_type} does not support query expr {expr!r}." +msgstr "" + +#: documents/filters.py:669 documents/models.py:135 +msgid "Maximum nesting depth exceeded." +msgstr "" + +#: documents/filters.py:854 +msgid "Custom field not found" +msgstr "" + +#: documents/models.py:38 documents/models.py:768 +msgid "owner" +msgstr "" + +#: documents/models.py:55 documents/models.py:983 +msgid "None" +msgstr "" + +#: documents/models.py:56 documents/models.py:984 +msgid "Any word" +msgstr "" + +#: documents/models.py:57 documents/models.py:985 +msgid "All words" +msgstr "" + +#: documents/models.py:58 documents/models.py:986 +msgid "Exact match" +msgstr "" + +#: documents/models.py:59 documents/models.py:987 +msgid "Regular expression" +msgstr "" + +#: documents/models.py:60 documents/models.py:988 +msgid "Fuzzy word" +msgstr "" + +#: documents/models.py:61 +msgid "Automatic" +msgstr "" + +#: documents/models.py:64 documents/models.py:456 documents/models.py:1526 +#: paperless_mail/models.py:23 paperless_mail/models.py:143 +msgid "name" +msgstr "" + +#: documents/models.py:66 documents/models.py:1052 +msgid "match" +msgstr "" + +#: documents/models.py:69 documents/models.py:1055 +msgid "matching algorithm" +msgstr "" + +#: documents/models.py:74 documents/models.py:1060 +msgid "is insensitive" +msgstr "" + +#: documents/models.py:97 documents/models.py:170 +msgid "correspondent" +msgstr "" + +#: documents/models.py:98 +msgid "correspondents" +msgstr "" + +#: documents/models.py:102 +msgid "color" +msgstr "" + +#: documents/models.py:107 +msgid "is inbox tag" +msgstr "" + +#: documents/models.py:110 +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "" + +#: documents/models.py:116 +msgid "tag" +msgstr "" + +#: documents/models.py:117 documents/models.py:208 +msgid "tags" +msgstr "" + +#: documents/models.py:123 +msgid "Cannot set itself as parent." +msgstr "" + +#: documents/models.py:125 +msgid "Cannot set parent to a descendant." +msgstr "" + +#: documents/models.py:142 documents/models.py:190 +msgid "document type" +msgstr "" + +#: documents/models.py:143 +msgid "document types" +msgstr "" + +#: documents/models.py:148 +msgid "path" +msgstr "" + +#: documents/models.py:152 documents/models.py:179 +msgid "storage path" +msgstr "" + +#: documents/models.py:153 +msgid "storage paths" +msgstr "" + +#: documents/models.py:160 +msgid "Unencrypted" +msgstr "" + +#: documents/models.py:161 +msgid "Encrypted with GNU Privacy Guard" +msgstr "" + +#: documents/models.py:182 +msgid "title" +msgstr "" + +#: documents/models.py:194 documents/models.py:682 +msgid "content" +msgstr "" + +#: documents/models.py:197 +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "" + +#: documents/models.py:202 +msgid "mime type" +msgstr "" + +#: documents/models.py:212 +msgid "checksum" +msgstr "" + +#: documents/models.py:216 +msgid "The checksum of the original document." +msgstr "" + +#: documents/models.py:220 +msgid "archive checksum" +msgstr "" + +#: documents/models.py:225 +msgid "The checksum of the archived document." +msgstr "" + +#: documents/models.py:229 +msgid "page count" +msgstr "" + +#: documents/models.py:236 +msgid "The number of pages of the document." +msgstr "" + +#: documents/models.py:241 documents/models.py:688 documents/models.py:726 +#: documents/models.py:798 documents/models.py:857 +msgid "created" +msgstr "" + +#: documents/models.py:247 +msgid "modified" +msgstr "" + +#: documents/models.py:254 +msgid "storage type" +msgstr "" + +#: documents/models.py:262 +msgid "added" +msgstr "" + +#: documents/models.py:269 +msgid "filename" +msgstr "" + +#: documents/models.py:275 +msgid "Current filename in storage" +msgstr "" + +#: documents/models.py:279 +msgid "archive filename" +msgstr "" + +#: documents/models.py:285 +msgid "Current archive filename in storage" +msgstr "" + +#: documents/models.py:289 +msgid "original filename" +msgstr "" + +#: documents/models.py:295 +msgid "The original name of the file when it was uploaded" +msgstr "" + +#: documents/models.py:302 +msgid "archive serial number" +msgstr "" + +#: documents/models.py:312 +msgid "The position of this document in your physical document archive." +msgstr "" + +#: documents/models.py:318 documents/models.py:699 documents/models.py:753 +#: documents/models.py:1569 +msgid "document" +msgstr "" + +#: documents/models.py:319 +msgid "documents" +msgstr "" + +#: documents/models.py:437 +msgid "Table" +msgstr "" + +#: documents/models.py:438 +msgid "Small Cards" +msgstr "" + +#: documents/models.py:439 +msgid "Large Cards" +msgstr "" + +#: documents/models.py:442 +msgid "Title" +msgstr "" + +#: documents/models.py:443 documents/models.py:1004 +msgid "Created" +msgstr "" + +#: documents/models.py:444 documents/models.py:1003 +msgid "Added" +msgstr "" + +#: documents/models.py:445 +msgid "Tags" +msgstr "" + +#: documents/models.py:446 +msgid "Correspondent" +msgstr "" + +#: documents/models.py:447 +msgid "Document Type" +msgstr "" + +#: documents/models.py:448 +msgid "Storage Path" +msgstr "" + +#: documents/models.py:449 +msgid "Note" +msgstr "" + +#: documents/models.py:450 +msgid "Owner" +msgstr "" + +#: documents/models.py:451 +msgid "Shared" +msgstr "" + +#: documents/models.py:452 +msgid "ASN" +msgstr "" + +#: documents/models.py:453 +msgid "Pages" +msgstr "" + +#: documents/models.py:459 +msgid "show on dashboard" +msgstr "" + +#: documents/models.py:462 +msgid "show in sidebar" +msgstr "" + +#: documents/models.py:466 +msgid "sort field" +msgstr "" + +#: documents/models.py:471 +msgid "sort reverse" +msgstr "" + +#: documents/models.py:474 +msgid "View page size" +msgstr "" + +#: documents/models.py:482 +msgid "View display mode" +msgstr "" + +#: documents/models.py:489 +msgid "Document display fields" +msgstr "" + +#: documents/models.py:496 documents/models.py:559 +msgid "saved view" +msgstr "" + +#: documents/models.py:497 +msgid "saved views" +msgstr "" + +#: documents/models.py:505 +msgid "title contains" +msgstr "" + +#: documents/models.py:506 +msgid "content contains" +msgstr "" + +#: documents/models.py:507 +msgid "ASN is" +msgstr "" + +#: documents/models.py:508 +msgid "correspondent is" +msgstr "" + +#: documents/models.py:509 +msgid "document type is" +msgstr "" + +#: documents/models.py:510 +msgid "is in inbox" +msgstr "" + +#: documents/models.py:511 +msgid "has tag" +msgstr "" + +#: documents/models.py:512 +msgid "has any tag" +msgstr "" + +#: documents/models.py:513 +msgid "created before" +msgstr "" + +#: documents/models.py:514 +msgid "created after" +msgstr "" + +#: documents/models.py:515 +msgid "created year is" +msgstr "" + +#: documents/models.py:516 +msgid "created month is" +msgstr "" + +#: documents/models.py:517 +msgid "created day is" +msgstr "" + +#: documents/models.py:518 +msgid "added before" +msgstr "" + +#: documents/models.py:519 +msgid "added after" +msgstr "" + +#: documents/models.py:520 +msgid "modified before" +msgstr "" + +#: documents/models.py:521 +msgid "modified after" +msgstr "" + +#: documents/models.py:522 +msgid "does not have tag" +msgstr "" + +#: documents/models.py:523 +msgid "does not have ASN" +msgstr "" + +#: documents/models.py:524 +msgid "title or content contains" +msgstr "" + +#: documents/models.py:525 +msgid "fulltext query" +msgstr "" + +#: documents/models.py:526 +msgid "more like this" +msgstr "" + +#: documents/models.py:527 +msgid "has tags in" +msgstr "" + +#: documents/models.py:528 +msgid "ASN greater than" +msgstr "" + +#: documents/models.py:529 +msgid "ASN less than" +msgstr "" + +#: documents/models.py:530 +msgid "storage path is" +msgstr "" + +#: documents/models.py:531 +msgid "has correspondent in" +msgstr "" + +#: documents/models.py:532 +msgid "does not have correspondent in" +msgstr "" + +#: documents/models.py:533 +msgid "has document type in" +msgstr "" + +#: documents/models.py:534 +msgid "does not have document type in" +msgstr "" + +#: documents/models.py:535 +msgid "has storage path in" +msgstr "" + +#: documents/models.py:536 +msgid "does not have storage path in" +msgstr "" + +#: documents/models.py:537 +msgid "owner is" +msgstr "" + +#: documents/models.py:538 +msgid "has owner in" +msgstr "" + +#: documents/models.py:539 +msgid "does not have owner" +msgstr "" + +#: documents/models.py:540 +msgid "does not have owner in" +msgstr "" + +#: documents/models.py:541 +msgid "has custom field value" +msgstr "" + +#: documents/models.py:542 +msgid "is shared by me" +msgstr "" + +#: documents/models.py:543 +msgid "has custom fields" +msgstr "" + +#: documents/models.py:544 +msgid "has custom field in" +msgstr "" + +#: documents/models.py:545 +msgid "does not have custom field in" +msgstr "" + +#: documents/models.py:546 +msgid "does not have custom field" +msgstr "" + +#: documents/models.py:547 +msgid "custom fields query" +msgstr "" + +#: documents/models.py:548 +msgid "created to" +msgstr "" + +#: documents/models.py:549 +msgid "created from" +msgstr "" + +#: documents/models.py:550 +msgid "added to" +msgstr "" + +#: documents/models.py:551 +msgid "added from" +msgstr "" + +#: documents/models.py:552 +msgid "mime type is" +msgstr "" + +#: documents/models.py:562 +msgid "rule type" +msgstr "" + +#: documents/models.py:564 +msgid "value" +msgstr "" + +#: documents/models.py:567 +msgid "filter rule" +msgstr "" + +#: documents/models.py:568 +msgid "filter rules" +msgstr "" + +#: documents/models.py:592 +msgid "Auto Task" +msgstr "" + +#: documents/models.py:593 +msgid "Scheduled Task" +msgstr "" + +#: documents/models.py:594 +msgid "Manual Task" +msgstr "" + +#: documents/models.py:597 +msgid "Consume File" +msgstr "" + +#: documents/models.py:598 +msgid "Train Classifier" +msgstr "" + +#: documents/models.py:599 +msgid "Check Sanity" +msgstr "" + +#: documents/models.py:600 +msgid "Index Optimize" +msgstr "" + +#: documents/models.py:605 +msgid "Task ID" +msgstr "" + +#: documents/models.py:606 +msgid "Celery ID for the Task that was run" +msgstr "" + +#: documents/models.py:611 +msgid "Acknowledged" +msgstr "" + +#: documents/models.py:612 +msgid "If the task is acknowledged via the frontend or API" +msgstr "" + +#: documents/models.py:618 +msgid "Task Filename" +msgstr "" + +#: documents/models.py:619 +msgid "Name of the file which the Task was run for" +msgstr "" + +#: documents/models.py:626 +msgid "Task Name" +msgstr "" + +#: documents/models.py:627 +msgid "Name of the task that was run" +msgstr "" + +#: documents/models.py:634 +msgid "Task State" +msgstr "" + +#: documents/models.py:635 +msgid "Current state of the task being run" +msgstr "" + +#: documents/models.py:641 +msgid "Created DateTime" +msgstr "" + +#: documents/models.py:642 +msgid "Datetime field when the task result was created in UTC" +msgstr "" + +#: documents/models.py:648 +msgid "Started DateTime" +msgstr "" + +#: documents/models.py:649 +msgid "Datetime field when the task was started in UTC" +msgstr "" + +#: documents/models.py:655 +msgid "Completed DateTime" +msgstr "" + +#: documents/models.py:656 +msgid "Datetime field when the task was completed in UTC" +msgstr "" + +#: documents/models.py:662 +msgid "Result Data" +msgstr "" + +#: documents/models.py:664 +msgid "The data returned by the task" +msgstr "" + +#: documents/models.py:672 +msgid "Task Type" +msgstr "" + +#: documents/models.py:673 +msgid "The type of task that was run" +msgstr "" + +#: documents/models.py:684 +msgid "Note for the document" +msgstr "" + +#: documents/models.py:708 +msgid "user" +msgstr "" + +#: documents/models.py:713 +msgid "note" +msgstr "" + +#: documents/models.py:714 +msgid "notes" +msgstr "" + +#: documents/models.py:722 +msgid "Archive" +msgstr "" + +#: documents/models.py:723 +msgid "Original" +msgstr "" + +#: documents/models.py:734 paperless_mail/models.py:75 +msgid "expiration" +msgstr "" + +#: documents/models.py:741 +msgid "slug" +msgstr "" + +#: documents/models.py:773 +msgid "share link" +msgstr "" + +#: documents/models.py:774 +msgid "share links" +msgstr "" + +#: documents/models.py:786 +msgid "String" +msgstr "" + +#: documents/models.py:787 +msgid "URL" +msgstr "" + +#: documents/models.py:788 +msgid "Date" +msgstr "" + +#: documents/models.py:789 +msgid "Boolean" +msgstr "" + +#: documents/models.py:790 +msgid "Integer" +msgstr "" + +#: documents/models.py:791 +msgid "Float" +msgstr "" + +#: documents/models.py:792 +msgid "Monetary" +msgstr "" + +#: documents/models.py:793 +msgid "Document Link" +msgstr "" + +#: documents/models.py:794 +msgid "Select" +msgstr "" + +#: documents/models.py:795 +msgid "Long Text" +msgstr "" + +#: documents/models.py:807 +msgid "data type" +msgstr "" + +#: documents/models.py:814 +msgid "extra data" +msgstr "" + +#: documents/models.py:818 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:824 +msgid "custom field" +msgstr "" + +#: documents/models.py:825 +msgid "custom fields" +msgstr "" + +#: documents/models.py:925 +msgid "custom field instance" +msgstr "" + +#: documents/models.py:926 +msgid "custom field instances" +msgstr "" + +#: documents/models.py:991 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:992 +msgid "Document Added" +msgstr "" + +#: documents/models.py:993 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:994 +msgid "Scheduled" +msgstr "" + +#: documents/models.py:997 +msgid "Consume Folder" +msgstr "" + +#: documents/models.py:998 +msgid "Api Upload" +msgstr "" + +#: documents/models.py:999 +msgid "Mail Fetch" +msgstr "" + +#: documents/models.py:1000 +msgid "Web UI" +msgstr "" + +#: documents/models.py:1005 +msgid "Modified" +msgstr "" + +#: documents/models.py:1006 +msgid "Custom Field" +msgstr "" + +#: documents/models.py:1009 +msgid "Workflow Trigger Type" +msgstr "" + +#: documents/models.py:1021 +msgid "filter path" +msgstr "" + +#: documents/models.py:1026 +msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." +msgstr "" + +#: documents/models.py:1033 +msgid "filter filename" +msgstr "" + +#: documents/models.py:1038 paperless_mail/models.py:200 +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "" + +#: documents/models.py:1049 +msgid "filter documents from this mail rule" +msgstr "" + +#: documents/models.py:1065 +msgid "has these tag(s)" +msgstr "" + +#: documents/models.py:1072 +msgid "has all of these tag(s)" +msgstr "" + +#: documents/models.py:1079 +msgid "does not have these tag(s)" +msgstr "" + +#: documents/models.py:1087 +msgid "has this document type" +msgstr "" + +#: documents/models.py:1094 +msgid "does not have these document type(s)" +msgstr "" + +#: documents/models.py:1102 +msgid "has this correspondent" +msgstr "" + +#: documents/models.py:1109 +msgid "does not have these correspondent(s)" +msgstr "" + +#: documents/models.py:1117 +msgid "has this storage path" +msgstr "" + +#: documents/models.py:1124 +msgid "does not have these storage path(s)" +msgstr "" + +#: documents/models.py:1128 +msgid "filter custom field query" +msgstr "" + +#: documents/models.py:1131 +msgid "JSON-encoded custom field query expression." +msgstr "" + +#: documents/models.py:1135 +msgid "schedule offset days" +msgstr "" + +#: documents/models.py:1138 +msgid "The number of days to offset the schedule trigger by." +msgstr "" + +#: documents/models.py:1143 +msgid "schedule is recurring" +msgstr "" + +#: documents/models.py:1146 +msgid "If the schedule should be recurring." +msgstr "" + +#: documents/models.py:1151 +msgid "schedule recurring delay in days" +msgstr "" + +#: documents/models.py:1155 +msgid "The number of days between recurring schedule triggers." +msgstr "" + +#: documents/models.py:1160 +msgid "schedule date field" +msgstr "" + +#: documents/models.py:1165 +msgid "The field to check for a schedule trigger." +msgstr "" + +#: documents/models.py:1174 +msgid "schedule date custom field" +msgstr "" + +#: documents/models.py:1178 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:1179 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:1187 +msgid "email subject" +msgstr "" + +#: documents/models.py:1191 +msgid "The subject of the email, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1197 +msgid "email body" +msgstr "" + +#: documents/models.py:1200 +msgid "The body (message) of the email, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1206 +msgid "emails to" +msgstr "" + +#: documents/models.py:1209 +msgid "The destination email addresses, comma separated." +msgstr "" + +#: documents/models.py:1215 +msgid "include document in email" +msgstr "" + +#: documents/models.py:1226 +msgid "webhook url" +msgstr "" + +#: documents/models.py:1229 +msgid "The destination URL for the notification." +msgstr "" + +#: documents/models.py:1234 +msgid "use parameters" +msgstr "" + +#: documents/models.py:1239 +msgid "send as JSON" +msgstr "" + +#: documents/models.py:1243 +msgid "webhook parameters" +msgstr "" + +#: documents/models.py:1246 +msgid "The parameters to send with the webhook URL if body not used." +msgstr "" + +#: documents/models.py:1250 +msgid "webhook body" +msgstr "" + +#: documents/models.py:1253 +msgid "The body to send with the webhook URL if parameters not used." +msgstr "" + +#: documents/models.py:1257 +msgid "webhook headers" +msgstr "" + +#: documents/models.py:1260 +msgid "The headers to send with the webhook URL." +msgstr "" + +#: documents/models.py:1265 +msgid "include document in webhook" +msgstr "" + +#: documents/models.py:1276 +msgid "Assignment" +msgstr "" + +#: documents/models.py:1280 +msgid "Removal" +msgstr "" + +#: documents/models.py:1284 documents/templates/account/password_reset.html:15 +msgid "Email" +msgstr "" + +#: documents/models.py:1288 +msgid "Webhook" +msgstr "" + +#: documents/models.py:1292 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1298 +msgid "assign title" +msgstr "" + +#: documents/models.py:1302 +msgid "Assign a document title, must be a Jinja2 template, see documentation." +msgstr "" + +#: documents/models.py:1310 paperless_mail/models.py:274 +msgid "assign this tag" +msgstr "" + +#: documents/models.py:1319 paperless_mail/models.py:282 +msgid "assign this document type" +msgstr "" + +#: documents/models.py:1328 paperless_mail/models.py:296 +msgid "assign this correspondent" +msgstr "" + +#: documents/models.py:1337 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1346 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1353 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1360 +msgid "grant view permissions to these groups" +msgstr "" + +#: documents/models.py:1367 +msgid "grant change permissions to these users" +msgstr "" + +#: documents/models.py:1374 +msgid "grant change permissions to these groups" +msgstr "" + +#: documents/models.py:1381 +msgid "assign these custom fields" +msgstr "" + +#: documents/models.py:1385 +msgid "custom field values" +msgstr "" + +#: documents/models.py:1389 +msgid "Optional values to assign to the custom fields." +msgstr "" + +#: documents/models.py:1398 +msgid "remove these tag(s)" +msgstr "" + +#: documents/models.py:1403 +msgid "remove all tags" +msgstr "" + +#: documents/models.py:1410 +msgid "remove these document type(s)" +msgstr "" + +#: documents/models.py:1415 +msgid "remove all document types" +msgstr "" + +#: documents/models.py:1422 +msgid "remove these correspondent(s)" +msgstr "" + +#: documents/models.py:1427 +msgid "remove all correspondents" +msgstr "" + +#: documents/models.py:1434 +msgid "remove these storage path(s)" +msgstr "" + +#: documents/models.py:1439 +msgid "remove all storage paths" +msgstr "" + +#: documents/models.py:1446 +msgid "remove these owner(s)" +msgstr "" + +#: documents/models.py:1451 +msgid "remove all owners" +msgstr "" + +#: documents/models.py:1458 +msgid "remove view permissions for these users" +msgstr "" + +#: documents/models.py:1465 +msgid "remove view permissions for these groups" +msgstr "" + +#: documents/models.py:1472 +msgid "remove change permissions for these users" +msgstr "" + +#: documents/models.py:1479 +msgid "remove change permissions for these groups" +msgstr "" + +#: documents/models.py:1484 +msgid "remove all permissions" +msgstr "" + +#: documents/models.py:1491 +msgid "remove these custom fields" +msgstr "" + +#: documents/models.py:1496 +msgid "remove all custom fields" +msgstr "" + +#: documents/models.py:1505 +msgid "email" +msgstr "" + +#: documents/models.py:1514 +msgid "webhook" +msgstr "" + +#: documents/models.py:1518 +msgid "workflow action" +msgstr "" + +#: documents/models.py:1519 +msgid "workflow actions" +msgstr "" + +#: documents/models.py:1528 paperless_mail/models.py:145 +msgid "order" +msgstr "" + +#: documents/models.py:1534 +msgid "triggers" +msgstr "" + +#: documents/models.py:1541 +msgid "actions" +msgstr "" + +#: documents/models.py:1544 paperless_mail/models.py:154 +msgid "enabled" +msgstr "" + +#: documents/models.py:1555 +msgid "workflow" +msgstr "" + +#: documents/models.py:1559 +msgid "workflow trigger type" +msgstr "" + +#: documents/models.py:1573 +msgid "date run" +msgstr "" + +#: documents/models.py:1579 +msgid "workflow run" +msgstr "" + +#: documents/models.py:1580 +msgid "workflow runs" +msgstr "" + +#: documents/serialisers.py:145 +#, python-format +msgid "Invalid regular expression: %(error)s" +msgstr "" + +#: documents/serialisers.py:619 +msgid "Invalid color." +msgstr "" + +#: documents/serialisers.py:1805 +#, python-format +msgid "File type %(type)s not supported" +msgstr "" + +#: documents/serialisers.py:1849 +#, python-format +msgid "Custom field id must be an integer: %(id)s" +msgstr "" + +#: documents/serialisers.py:1856 +#, python-format +msgid "Custom field with id %(id)s does not exist" +msgstr "" + +#: documents/serialisers.py:1873 documents/serialisers.py:1883 +msgid "Custom fields must be a list of integers or an object mapping ids to values." +msgstr "" + +#: documents/serialisers.py:1878 +msgid "Some custom fields don't exist or were specified twice." +msgstr "" + +#: documents/serialisers.py:1993 +msgid "Invalid variable detected." +msgstr "" + +#: documents/templates/account/account_inactive.html:5 +msgid "Paperless-ngx account inactive" +msgstr "" + +#: documents/templates/account/account_inactive.html:9 +msgid "Account inactive." +msgstr "" + +#: documents/templates/account/account_inactive.html:14 +msgid "This account is inactive." +msgstr "" + +#: documents/templates/account/account_inactive.html:16 +msgid "Return to login" +msgstr "" + +#: documents/templates/account/email/base_message.txt:1 +#, python-format +msgid "Hello from %(site_name)s!" +msgstr "" + +#: documents/templates/account/email/base_message.txt:5 +#, python-format +msgid "Thank you for using %(site_name)s!\n" +"%(site_domain)s" +msgstr "" + +#: documents/templates/account/login.html:5 +msgid "Paperless-ngx sign in" +msgstr "" + +#: documents/templates/account/login.html:10 +msgid "Please sign in." +msgstr "" + +#: documents/templates/account/login.html:12 +#, python-format +msgid "Don't have an account yet? Sign up" +msgstr "" + +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 +#: documents/templates/socialaccount/signup.html:13 +msgid "Username" +msgstr "" + +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 +msgid "Password" +msgstr "" + +#: documents/templates/account/login.html:36 +#: documents/templates/mfa/authenticate.html:23 +msgid "Sign in" +msgstr "" + +#: documents/templates/account/login.html:40 +msgid "Forgot your password?" +msgstr "" + +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 +msgid "or sign in via" +msgstr "" + +#: documents/templates/account/password_reset.html:5 +msgid "Paperless-ngx reset password request" +msgstr "" + +#: documents/templates/account/password_reset.html:9 +msgid "Enter your email address below, and we'll email instructions for setting a new one." +msgstr "" + +#: documents/templates/account/password_reset.html:12 +msgid "An error occurred. Please try again." +msgstr "" + +#: documents/templates/account/password_reset.html:21 +msgid "Send me instructions!" +msgstr "" + +#: documents/templates/account/password_reset_done.html:5 +msgid "Paperless-ngx reset password sent" +msgstr "" + +#: documents/templates/account/password_reset_done.html:9 +msgid "Check your inbox." +msgstr "" + +#: documents/templates/account/password_reset_done.html:13 +msgid "We've emailed you instructions for setting your password. You should receive the email shortly!" +msgstr "" + +#: documents/templates/account/password_reset_from_key.html:5 +msgid "Paperless-ngx reset password confirmation" +msgstr "" + +#: documents/templates/account/password_reset_from_key.html:9 +msgid "Set a new password." +msgstr "" + +#: documents/templates/account/password_reset_from_key.html:15 +msgid "request a new password reset" +msgstr "" + +#: documents/templates/account/password_reset_from_key.html:17 +msgid "New Password" +msgstr "" + +#: documents/templates/account/password_reset_from_key.html:18 +msgid "Confirm Password" +msgstr "" + +#: documents/templates/account/password_reset_from_key.html:28 +msgid "Change my password" +msgstr "" + +#: documents/templates/account/password_reset_from_key_done.html:5 +msgid "Paperless-ngx reset password complete" +msgstr "" + +#: documents/templates/account/password_reset_from_key_done.html:9 +msgid "Password reset complete." +msgstr "" + +#: documents/templates/account/password_reset_from_key_done.html:14 +#, python-format +msgid "Your new password has been set. You can now log in" +msgstr "" + +#: documents/templates/account/signup.html:5 +msgid "Paperless-ngx sign up" +msgstr "" + +#: documents/templates/account/signup.html:11 +#, python-format +msgid "Already have an account? Sign in" +msgstr "" + +#: documents/templates/account/signup.html:19 +msgid "Note: This is the first user account for this installation and will be granted superuser privileges." +msgstr "" + +#: documents/templates/account/signup.html:23 +#: documents/templates/socialaccount/signup.html:14 +msgid "Email (optional)" +msgstr "" + +#: documents/templates/account/signup.html:25 +msgid "Password (again)" +msgstr "" + +#: documents/templates/account/signup.html:43 +#: documents/templates/socialaccount/signup.html:27 +msgid "Sign up" +msgstr "" + +#: documents/templates/index.html:61 +msgid "Paperless-ngx is loading..." +msgstr "" + +#: documents/templates/index.html:62 +msgid "Still here?! Hmm, something might be wrong." +msgstr "" + +#: documents/templates/index.html:62 +msgid "Here's a link to the docs." +msgstr "" + +#: documents/templates/mfa/authenticate.html:7 +msgid "Paperless-ngx Two-Factor Authentication" +msgstr "" + +#: documents/templates/mfa/authenticate.html:12 +msgid "Your account is protected by two-factor authentication. Please enter an authenticator code:" +msgstr "" + +#: documents/templates/mfa/authenticate.html:17 +msgid "Code" +msgstr "" + +#: documents/templates/mfa/authenticate.html:24 +msgid "Cancel" +msgstr "" + +#: documents/templates/paperless-ngx/base.html:58 +msgid "Share link was not found." +msgstr "" + +#: documents/templates/paperless-ngx/base.html:62 +msgid "Share link has expired." +msgstr "" + +#: documents/templates/socialaccount/authentication_error.html:5 +#: documents/templates/socialaccount/login.html:5 +msgid "Paperless-ngx social account sign in" +msgstr "" + +#: documents/templates/socialaccount/authentication_error.html:10 +#, python-format +msgid "An error occurred while attempting to login via your social network account. Back to the login page" +msgstr "" + +#: documents/templates/socialaccount/login.html:10 +#, python-format +msgid "You are about to connect a new third-party account from %(provider)s." +msgstr "" + +#: documents/templates/socialaccount/login.html:13 +msgid "Continue" +msgstr "" + +#: documents/templates/socialaccount/signup.html:5 +msgid "Paperless-ngx social account sign up" +msgstr "" + +#: documents/templates/socialaccount/signup.html:10 +#, python-format +msgid "You are about to use your %(provider_name)s account to login." +msgstr "" + +#: documents/templates/socialaccount/signup.html:11 +msgid "As a final step, please complete the following form:" +msgstr "" + +#: documents/validators.py:24 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:29 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:36 +msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}" +msgstr "" + +#: documents/validators.py:45 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + +#: paperless/apps.py:11 +msgid "Paperless" +msgstr "" + +#: paperless/models.py:26 +msgid "pdf" +msgstr "" + +#: paperless/models.py:27 +msgid "pdfa" +msgstr "" + +#: paperless/models.py:28 +msgid "pdfa-1" +msgstr "" + +#: paperless/models.py:29 +msgid "pdfa-2" +msgstr "" + +#: paperless/models.py:30 +msgid "pdfa-3" +msgstr "" + +#: paperless/models.py:39 +msgid "skip" +msgstr "" + +#: paperless/models.py:40 +msgid "redo" +msgstr "" + +#: paperless/models.py:41 +msgid "force" +msgstr "" + +#: paperless/models.py:42 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:50 +msgid "never" +msgstr "" + +#: paperless/models.py:51 +msgid "with_text" +msgstr "" + +#: paperless/models.py:52 +msgid "always" +msgstr "" + +#: paperless/models.py:60 +msgid "clean" +msgstr "" + +#: paperless/models.py:61 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:62 +msgid "none" +msgstr "" + +#: paperless/models.py:70 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:71 +msgid "RGB" +msgstr "" + +#: paperless/models.py:72 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:73 +msgid "Gray" +msgstr "" + +#: paperless/models.py:74 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:83 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:95 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:101 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:108 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:116 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:124 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:131 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:138 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:141 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:146 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:152 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:158 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:166 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:175 +msgid "Application title" +msgstr "" + +#: paperless/models.py:182 +msgid "Application logo" +msgstr "" + +#: paperless/models.py:197 +msgid "Enables barcode scanning" +msgstr "" + +#: paperless/models.py:203 +msgid "Enables barcode TIFF support" +msgstr "" + +#: paperless/models.py:209 +msgid "Sets the barcode string" +msgstr "" + +#: paperless/models.py:217 +msgid "Retains split pages" +msgstr "" + +#: paperless/models.py:223 +msgid "Enables ASN barcode" +msgstr "" + +#: paperless/models.py:229 +msgid "Sets the ASN barcode prefix" +msgstr "" + +#: paperless/models.py:237 +msgid "Sets the barcode upscale factor" +msgstr "" + +#: paperless/models.py:244 +msgid "Sets the barcode DPI" +msgstr "" + +#: paperless/models.py:251 +msgid "Sets the maximum pages for barcode" +msgstr "" + +#: paperless/models.py:258 +msgid "Enables tag barcode" +msgstr "" + +#: paperless/models.py:264 +msgid "Sets the tag barcode mapping" +msgstr "" + +#: paperless/models.py:269 +msgid "paperless application settings" +msgstr "" + +#: paperless/settings.py:773 +msgid "English (US)" +msgstr "" + +#: paperless/settings.py:774 +msgid "Arabic" +msgstr "" + +#: paperless/settings.py:775 +msgid "Afrikaans" +msgstr "" + +#: paperless/settings.py:776 +msgid "Belarusian" +msgstr "" + +#: paperless/settings.py:777 +msgid "Bulgarian" +msgstr "" + +#: paperless/settings.py:778 +msgid "Catalan" +msgstr "" + +#: paperless/settings.py:779 +msgid "Czech" +msgstr "" + +#: paperless/settings.py:780 +msgid "Danish" +msgstr "" + +#: paperless/settings.py:781 +msgid "German" +msgstr "" + +#: paperless/settings.py:782 +msgid "Greek" +msgstr "" + +#: paperless/settings.py:783 +msgid "English (GB)" +msgstr "" + +#: paperless/settings.py:784 +msgid "Spanish" +msgstr "" + +#: paperless/settings.py:785 +msgid "Persian" +msgstr "" + +#: paperless/settings.py:786 +msgid "Finnish" +msgstr "" + +#: paperless/settings.py:787 +msgid "French" +msgstr "" + +#: paperless/settings.py:788 +msgid "Hungarian" +msgstr "" + +#: paperless/settings.py:789 +msgid "Italian" +msgstr "" + +#: paperless/settings.py:790 +msgid "Japanese" +msgstr "" + +#: paperless/settings.py:791 +msgid "Korean" +msgstr "" + +#: paperless/settings.py:792 +msgid "Luxembourgish" +msgstr "" + +#: paperless/settings.py:793 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:794 +msgid "Dutch" +msgstr "" + +#: paperless/settings.py:795 +msgid "Polish" +msgstr "" + +#: paperless/settings.py:796 +msgid "Portuguese (Brazil)" +msgstr "" + +#: paperless/settings.py:797 +msgid "Portuguese" +msgstr "" + +#: paperless/settings.py:798 +msgid "Romanian" +msgstr "" + +#: paperless/settings.py:799 +msgid "Russian" +msgstr "" + +#: paperless/settings.py:800 +msgid "Slovak" +msgstr "" + +#: paperless/settings.py:801 +msgid "Slovenian" +msgstr "" + +#: paperless/settings.py:802 +msgid "Serbian" +msgstr "" + +#: paperless/settings.py:803 +msgid "Swedish" +msgstr "" + +#: paperless/settings.py:804 +msgid "Turkish" +msgstr "" + +#: paperless/settings.py:805 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:806 +msgid "Vietnamese" +msgstr "" + +#: paperless/settings.py:807 +msgid "Chinese Simplified" +msgstr "" + +#: paperless/settings.py:808 +msgid "Chinese Traditional" +msgstr "" + +#: paperless/urls.py:370 +msgid "Paperless-ngx administration" +msgstr "" + +#: paperless_mail/admin.py:39 +msgid "Authentication" +msgstr "" + +#: paperless_mail/admin.py:42 +msgid "Advanced settings" +msgstr "" + +#: paperless_mail/admin.py:58 +msgid "Filter" +msgstr "" + +#: paperless_mail/admin.py:61 +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "" + +#: paperless_mail/admin.py:78 +msgid "Actions" +msgstr "" + +#: paperless_mail/admin.py:81 +msgid "The action applied to the mail. This action is only performed when the mail body or attachments were consumed from the mail." +msgstr "" + +#: paperless_mail/admin.py:89 +msgid "Metadata" +msgstr "" + +#: paperless_mail/admin.py:92 +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "" + +#: paperless_mail/apps.py:11 +msgid "Paperless mail" +msgstr "" + +#: paperless_mail/models.py:10 +msgid "mail account" +msgstr "" + +#: paperless_mail/models.py:11 +msgid "mail accounts" +msgstr "" + +#: paperless_mail/models.py:14 +msgid "No encryption" +msgstr "" + +#: paperless_mail/models.py:15 +msgid "Use SSL" +msgstr "" + +#: paperless_mail/models.py:16 +msgid "Use STARTTLS" +msgstr "" + +#: paperless_mail/models.py:19 +msgid "IMAP" +msgstr "" + +#: paperless_mail/models.py:20 +msgid "Gmail OAuth" +msgstr "" + +#: paperless_mail/models.py:21 +msgid "Outlook OAuth" +msgstr "" + +#: paperless_mail/models.py:25 +msgid "IMAP server" +msgstr "" + +#: paperless_mail/models.py:28 +msgid "IMAP port" +msgstr "" + +#: paperless_mail/models.py:32 +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "" + +#: paperless_mail/models.py:38 +msgid "IMAP security" +msgstr "" + +#: paperless_mail/models.py:43 +msgid "username" +msgstr "" + +#: paperless_mail/models.py:45 +msgid "password" +msgstr "" + +#: paperless_mail/models.py:47 +msgid "Is token authentication" +msgstr "" + +#: paperless_mail/models.py:50 +msgid "character set" +msgstr "" + +#: paperless_mail/models.py:54 +msgid "The character set to use when communicating with the mail server, such as 'UTF-8' or 'US-ASCII'." +msgstr "" + +#: paperless_mail/models.py:60 +msgid "account type" +msgstr "" + +#: paperless_mail/models.py:66 +msgid "refresh token" +msgstr "" + +#: paperless_mail/models.py:70 +msgid "The refresh token to use for token authentication e.g. with oauth2." +msgstr "" + +#: paperless_mail/models.py:79 +msgid "The expiration date of the refresh token. " +msgstr "" + +#: paperless_mail/models.py:89 +msgid "mail rule" +msgstr "" + +#: paperless_mail/models.py:90 +msgid "mail rules" +msgstr "" + +#: paperless_mail/models.py:104 paperless_mail/models.py:115 +msgid "Only process attachments." +msgstr "" + +#: paperless_mail/models.py:105 +msgid "Process full Mail (with embedded attachments in file) as .eml" +msgstr "" + +#: paperless_mail/models.py:109 +msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" +msgstr "" + +#: paperless_mail/models.py:116 +msgid "Process all files, including 'inline' attachments." +msgstr "" + +#: paperless_mail/models.py:119 +msgid "System default" +msgstr "" + +#: paperless_mail/models.py:120 +msgid "Text, then HTML" +msgstr "" + +#: paperless_mail/models.py:121 +msgid "HTML, then text" +msgstr "" + +#: paperless_mail/models.py:122 +msgid "HTML only" +msgstr "" + +#: paperless_mail/models.py:123 +msgid "Text only" +msgstr "" + +#: paperless_mail/models.py:126 +msgid "Delete" +msgstr "" + +#: paperless_mail/models.py:127 +msgid "Move to specified folder" +msgstr "" + +#: paperless_mail/models.py:128 +msgid "Mark as read, don't process read mails" +msgstr "" + +#: paperless_mail/models.py:129 +msgid "Flag the mail, don't process flagged mails" +msgstr "" + +#: paperless_mail/models.py:130 +msgid "Tag the mail with specified tag, don't process tagged mails" +msgstr "" + +#: paperless_mail/models.py:133 +msgid "Use subject as title" +msgstr "" + +#: paperless_mail/models.py:134 +msgid "Use attachment filename as title" +msgstr "" + +#: paperless_mail/models.py:135 +msgid "Do not assign title from rule" +msgstr "" + +#: paperless_mail/models.py:138 +msgid "Do not assign a correspondent" +msgstr "" + +#: paperless_mail/models.py:139 +msgid "Use mail address" +msgstr "" + +#: paperless_mail/models.py:140 +msgid "Use name (or mail address if not available)" +msgstr "" + +#: paperless_mail/models.py:141 +msgid "Use correspondent selected below" +msgstr "" + +#: paperless_mail/models.py:151 +msgid "account" +msgstr "" + +#: paperless_mail/models.py:157 paperless_mail/models.py:318 +msgid "folder" +msgstr "" + +#: paperless_mail/models.py:161 +msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." +msgstr "" + +#: paperless_mail/models.py:167 +msgid "filter from" +msgstr "" + +#: paperless_mail/models.py:174 +msgid "filter to" +msgstr "" + +#: paperless_mail/models.py:181 +msgid "filter subject" +msgstr "" + +#: paperless_mail/models.py:188 +msgid "filter body" +msgstr "" + +#: paperless_mail/models.py:195 +msgid "filter attachment filename inclusive" +msgstr "" + +#: paperless_mail/models.py:207 +msgid "filter attachment filename exclusive" +msgstr "" + +#: paperless_mail/models.py:212 +msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "" + +#: paperless_mail/models.py:219 +msgid "maximum age" +msgstr "" + +#: paperless_mail/models.py:221 +msgid "Specified in days." +msgstr "" + +#: paperless_mail/models.py:225 +msgid "attachment type" +msgstr "" + +#: paperless_mail/models.py:229 +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "" + +#: paperless_mail/models.py:235 +msgid "consumption scope" +msgstr "" + +#: paperless_mail/models.py:241 +msgid "pdf layout" +msgstr "" + +#: paperless_mail/models.py:247 +msgid "action" +msgstr "" + +#: paperless_mail/models.py:253 +msgid "action parameter" +msgstr "" + +#: paperless_mail/models.py:258 +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." +msgstr "" + +#: paperless_mail/models.py:266 +msgid "assign title from" +msgstr "" + +#: paperless_mail/models.py:286 +msgid "assign correspondent from" +msgstr "" + +#: paperless_mail/models.py:300 +msgid "Assign the rule owner to documents" +msgstr "" + +#: paperless_mail/models.py:326 +msgid "uid" +msgstr "" + +#: paperless_mail/models.py:334 +msgid "subject" +msgstr "" + +#: paperless_mail/models.py:342 +msgid "received" +msgstr "" + +#: paperless_mail/models.py:349 +msgid "processed" +msgstr "" + +#: paperless_mail/models.py:355 +msgid "status" +msgstr "" + +#: paperless_mail/models.py:363 +msgid "error" +msgstr "" + diff --git a/src/locale/ms_MY/LC_MESSAGES/django.po b/src/locale/ms_MY/LC_MESSAGES/django.po index 397556578..169a93962 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Malay\n" "Language: ms_MY\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumen" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" diff --git a/src/locale/nl_NL/LC_MESSAGES/django.po b/src/locale/nl_NL/LC_MESSAGES/django.po index dd190fd70..633c2c3dc 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Language: nl_NL\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documenten" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Waarde moet een geldige JSON zijn." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} is geen geldig aangepast veld." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Aangepast veld niet gevonden" diff --git a/src/locale/no_NO/LC_MESSAGES/django.po b/src/locale/no_NO/LC_MESSAGES/django.po index b919971b1..4d6e0d80a 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Language: no_NO\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenter" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Verdien må være en gyldig JSON." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Egendefinert felt ble ikke funnet" diff --git a/src/locale/pl_PL/LC_MESSAGES/django.po b/src/locale/pl_PL/LC_MESSAGES/django.po index a8558f15c..947374c6a 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-29 12:14\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenty" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Wartość musi być prawidłowym JSON." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Nieprawidłowe wyrażenie zapytania pola niestandardowego" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Nieprawidłowa lista wyrażeń. Nie może być pusta." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Nieprawidłowy operator logiczny {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Maksymalna liczba warunków zapytania została przekroczona." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} nie jest prawidłowym polem niestandardowym." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} nie obsługuje wyrażenia zapytania {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Przekroczono maksymalną głębokość zagnieżdżenia." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Nie znaleziono pola niestandardowego" @@ -878,23 +878,23 @@ msgstr "posiada wskazanego nadawcę" #: documents/models.py:1109 msgid "does not have these correspondent(s)" -msgstr "" +msgstr "nie posiada korespondenta(-ów)" #: documents/models.py:1117 msgid "has this storage path" -msgstr "" +msgstr "ma tę ścieżkę zapisu" #: documents/models.py:1124 msgid "does not have these storage path(s)" -msgstr "" +msgstr "nie ma tej ścieżki/ścieżek zapisu" #: documents/models.py:1128 msgid "filter custom field query" -msgstr "" +msgstr "filtruj zapytanie pola niestandardowego" #: documents/models.py:1131 msgid "JSON-encoded custom field query expression." -msgstr "" +msgstr "Niestandardowe wyrażenie zapytania pola zakodowane w formacie JSON." #: documents/models.py:1135 msgid "schedule offset days" @@ -1038,7 +1038,7 @@ msgstr "przypisz tytuł" #: documents/models.py:1302 msgid "Assign a document title, must be a Jinja2 template, see documentation." -msgstr "" +msgstr "Przypisz tytuł dokumentu, musi być szablonem Jinja2, zobacz dokumentację." #: documents/models.py:1310 paperless_mail/models.py:274 msgid "assign this tag" @@ -1225,20 +1225,20 @@ msgstr "Typ pliku %(type)s nie jest obsługiwany" #: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" -msgstr "" +msgstr "Identyfikator pola niestandardowego musi być liczbą całkowitą: %(id)s" #: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" -msgstr "" +msgstr "Pole niestandardowe z id %(id)s nie istnieje" #: documents/serialisers.py:1873 documents/serialisers.py:1883 msgid "Custom fields must be a list of integers or an object mapping ids to values." -msgstr "" +msgstr "Pola niestandardowe muszą być listą liczb całkowitych lub obiektem mapującym identyfikatory na wartości." #: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." -msgstr "" +msgstr "Niektóre niestandardowe pola nie istnieją lub zostały określone dwukrotnie." #: documents/serialisers.py:1993 msgid "Invalid variable detected." @@ -1473,21 +1473,21 @@ msgstr "Na koniec należy wypełnić poniższy formularz:" #: documents/validators.py:24 #, python-brace-format msgid "Unable to parse URI {value}, missing scheme" -msgstr "" +msgstr "Nie można przeanalizować URI {value}, brak schematu" #: documents/validators.py:29 #, python-brace-format msgid "Unable to parse URI {value}, missing net location or path" -msgstr "" +msgstr "Nie można przeanalizować URI {value}, brak lokalizacji sieciowej lub ścieżki" #: documents/validators.py:36 msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}" -msgstr "" +msgstr "Schemat URI '{parts.scheme}' jest niedozwolony. Dozwolone schematy: {', '.join(allowed_schemes)}" #: documents/validators.py:45 #, python-brace-format msgid "Unable to parse URI {value}" -msgstr "" +msgstr "Nie można przetworzyć URI {value}" #: paperless/apps.py:11 msgid "Paperless" @@ -1815,7 +1815,7 @@ msgstr "Ukraiński" #: paperless/settings.py:806 msgid "Vietnamese" -msgstr "" +msgstr "Wietnamski" #: paperless/settings.py:807 msgid "Chinese Simplified" diff --git a/src/locale/pt_BR/LC_MESSAGES/django.po b/src/locale/pt_BR/LC_MESSAGES/django.po index 9c071f8d6..d5f47bd0f 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-30 23:37\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documentos" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "O valor deve ser um JSON válido." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Expressão de consulta de campo personalizado inválida" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Lista de expressões inválida. Deve estar não vazia." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Operador lógico inválido {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Número máximo de condições de consulta excedido." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} não é um campo personalizado válido." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} Não suporta a consulta expr {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Profundidade máxima do aninhamento excedida." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Campo personalizado não encontrado" diff --git a/src/locale/pt_PT/LC_MESSAGES/django.po b/src/locale/pt_PT/LC_MESSAGES/django.po index 1b2a96905..4af8699b6 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Language: pt_PT\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documentos" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "O valor deve ser JSON válido." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Expressão de consulta de campo personalizado inválido" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Lista de expressões inválida. Não deve estar vazia." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Operador lógico inválido {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "O número máximo de condições de consulta foi excedido." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} não é um campo personalizado válido." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} não aceita a expressão de consulta {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Campo personalizado não encontrado" diff --git a/src/locale/ro_RO/LC_MESSAGES/django.po b/src/locale/ro_RO/LC_MESSAGES/django.po index 9d95d6e19..ff3752cde 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Language: ro_RO\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documente" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" diff --git a/src/locale/ru_RU/LC_MESSAGES/django.po b/src/locale/ru_RU/LC_MESSAGES/django.po index 772203662..fa4ced9c9 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-11-01 20:24\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Документы" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Значение должно быть корректным JSON." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Неверное выражение запроса пользовательского поля" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Недопустимый список выражений. Не может быть пустым." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Недопустимый логический оператор {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Превышено максимальное количество условий запроса." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} не является допустимым пользовательским полем." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} не поддерживает запрос {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Превышена максимальная глубина вложения." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Пользовательское поле не найдено" diff --git a/src/locale/sk_SK/LC_MESSAGES/django.po b/src/locale/sk_SK/LC_MESSAGES/django.po index 3a711b572..eaee3a3e9 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Slovak\n" "Language: sk_SK\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenty" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Hodnota musí byť vo validnom formáte JSON." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Neplatný výraz požiadavky na vlastné pole" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Neplatný zoznam výrazov. Nesmie byť prázdny." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Neplatný logický operátor {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Prekročili ste maximálny počet podmienok požiadavky." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} nie je platné vlastné pole." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} nepodporuje výraz požiadavky {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Bola prekročená maximálna hĺbka vetvenia." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Vlastné pole nebolo nájdené" diff --git a/src/locale/sl_SI/LC_MESSAGES/django.po b/src/locale/sl_SI/LC_MESSAGES/django.po index 497771b8a..b8d9780ab 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "Language: sl_SI\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenti" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Vrednost mora biti veljaven JSON." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Neveljaven izraz poizvedbe po polju po meri" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Neveljaven seznam izrazov. Ne sme biti prazen." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Neveljaven logični operator {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Preseženo je bilo največje dovoljeno število pogojev poizvedbe." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} ni veljavno polje po meri." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} ne podpira izraza poizvedbe {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Presežena je bila največja globina gnezdenja." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Polja po meri ni bilo mogoče najti" diff --git a/src/locale/sr_CS/LC_MESSAGES/django.po b/src/locale/sr_CS/LC_MESSAGES/django.po index 7ada34e65..7d156b01b 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Serbian (Latin)\n" "Language: sr_CS\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenta" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Vrednost mora da bude važeći JSON." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Nevažeći izraz upita prilagođen polja" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Nevažeća lista izraza. Ne sme biti prazna." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Nevažeći logični operator {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Premašen je maksimalni broj uslova u upitu." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} nije validno prilagođeno polje." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} ne podržava izraz u upitu {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Premašena je maksimalna dubina grananja." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Nije pronađeno prilagođeno polje" diff --git a/src/locale/sv_SE/LC_MESSAGES/django.po b/src/locale/sv_SE/LC_MESSAGES/django.po index d5dc8a029..3585184eb 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Language: sv_SE\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokument" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Värdet måste vara giltigt JSON." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Ogiltigt sökordsuttryck för anpassade fält" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Ogiltig uttryckslista. Får inte vara tom." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Ogiltig logisk operator {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Maximalt antal frågevillkor överskrids." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} är inte ett giltigt anpassat fält." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} stöder inte frågan expr {expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Maximalt antal nästlade nivåer överskrids." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Anpassat fält hittades inte" diff --git a/src/locale/th_TH/LC_MESSAGES/django.po b/src/locale/th_TH/LC_MESSAGES/django.po index a209932dc..d1a3323a8 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-30 23:37\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Thai\n" "Language: th_TH\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "เอกสาร" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "ค่า ต้องอยู่ในรูปแบบ JSON ที่ถูกต้อง" -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "รูปแบบการค้นหาฟิลด์ที่กำหนดเองไม่ถูกต้อง" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "รายการคำสั่งไม่ถูกต้อง ต้องไม่เว้นว่าง" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "ตัวดำเนินการเชิงตรรกะ {op!r} ไม่ถูกต้อง" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "จำนวนเงื่อนไขในการค้นหาเกินกำหนด" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} ไม่ใช่ฟิลด์ที่กำหนดเองที่ถูกต้อง" -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} ไม่รองรับรูปแบบการค้นหา {expr!r}" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "จำนวนการซ้อนเงื่อนไขสูงสุดเกินขีดจำกัด" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "ไม่พบฟิลด์ที่กำหนด" diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po index 45d232824..83412ea93 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Belgeler" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Değer geçerli bir JSON olmalıdır." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Geçersiz özel alan sorgu ifadesi" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Geçersiz ifade listesi. Boş olmamalıdır." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Geçersiz mantıksal işleç {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "En çok sorgu koşulu sayısı aşıldı." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} geçerli bir özel alan değil." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type}, {expr!r} sorgu ifadesini desteklemiyor." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "En çok iç içe geçme izni aşıldı." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Özel alan bulunamadı" diff --git a/src/locale/uk_UA/LC_MESSAGES/django.po b/src/locale/uk_UA/LC_MESSAGES/django.po index 1f3098872..8aea4838c 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Language: uk_UA\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Документи" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Значення має бути коректним JSON." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" diff --git a/src/locale/vi_VN/LC_MESSAGES/django.po b/src/locale/vi_VN/LC_MESSAGES/django.po index 23f3a8cf5..160ccc6d2 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:08\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Tài liệu" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "Giá trị phải là JSON hợp lệ." -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Biểu thức truy vấn trường tùy chỉnh không hợp lệ" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Danh sách biểu thức không hợp lệ. Phải không rỗng." -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Toán tử lô-gic không hợp lệ {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Đã vượt quá số điều kiện truy vấn tối đa." -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} không phải là trường tùy chỉnh hợp lệ." -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} không hỗ trợ expr truy vấn{expr!r}." -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Đã vượt quá độ sâu lồng nhau tối đa." -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Không tìm thấy trường tùy chỉnh" @@ -136,7 +136,7 @@ msgstr "thẻ" #: documents/models.py:123 msgid "Cannot set itself as parent." -msgstr "" +msgstr "Không thể tự đặt thành thư mục gốc" #: documents/models.py:125 msgid "Cannot set parent to a descendant." @@ -758,7 +758,7 @@ msgstr "Chọn" #: documents/models.py:795 msgid "Long Text" -msgstr "" +msgstr "Văn bản dài" #: documents/models.py:807 msgid "data type" @@ -858,11 +858,11 @@ msgstr "có những thẻ này" #: documents/models.py:1072 msgid "has all of these tag(s)" -msgstr "" +msgstr "có tất cả thẻ này" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "" +msgstr "không có các thẻ này" #: documents/models.py:1087 msgid "has this document type" @@ -870,7 +870,7 @@ msgstr "có loại tài liệu này" #: documents/models.py:1094 msgid "does not have these document type(s)" -msgstr "" +msgstr "không có các loại tài liệu này" #: documents/models.py:1102 msgid "has this correspondent" @@ -878,15 +878,15 @@ msgstr "có phóng viên này" #: documents/models.py:1109 msgid "does not have these correspondent(s)" -msgstr "" +msgstr "không có các biên tập viên này" #: documents/models.py:1117 msgid "has this storage path" -msgstr "" +msgstr "có đường dẫn lưu trữ này" #: documents/models.py:1124 msgid "does not have these storage path(s)" -msgstr "" +msgstr "không có các đường dẫn lưu trữ này" #: documents/models.py:1128 msgid "filter custom field query" diff --git a/src/locale/zh_CN/LC_MESSAGES/django.po b/src/locale/zh_CN/LC_MESSAGES/django.po index d44c031ef..88977f806 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-10-28 18:07\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "文档" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "值必须是有效的 JSON 格式。" -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "无效的自定义字段查询表达式" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "无效的表达式列表。必须不为空。" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "无效的逻辑运算符 {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "超出查询条件的最大数量。" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} 不是一个有效的自定义字段。" -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} 不支持查询表达式 {expr!r}。" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "超出最大嵌套深度。" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Custom field not found" diff --git a/src/locale/zh_TW/LC_MESSAGES/django.po b/src/locale/zh_TW/LC_MESSAGES/django.po index 5f9241924..596bd8223 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-10-28 18:06+0000\n" -"PO-Revision-Date: 2025-11-06 00:35\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Language: zh_TW\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "文件" -#: documents/filters.py:392 +#: documents/filters.py:395 msgid "Value must be valid JSON." msgstr "參數值必須是有效的 JSON。" -#: documents/filters.py:411 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "無效的自訂欄位查詢表達式" -#: documents/filters.py:421 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "無效的表達式列表,不能為空。" -#: documents/filters.py:442 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "無效的邏輯運算符 {op!r}" -#: documents/filters.py:456 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "超過查詢條件的最大數量。" -#: documents/filters.py:521 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} 不是有效的自訂欄位。" -#: documents/filters.py:558 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} 不支援查詢表達式 {expr!r}。" -#: documents/filters.py:666 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "超過最大巢狀深度。" -#: documents/filters.py:851 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "找不到自訂欄位" From b5df90156e8bf803735dc512d5cfd232b9d07016 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 15 Nov 2025 13:31:03 -0800 Subject: [PATCH 071/133] Documentation: update redis security link (#11373) --- docs/setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/setup.md b/docs/setup.md index f239e5429..3e7ac1be3 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -326,7 +326,7 @@ are released, dependency support is confirmed, etc. !!! warning - Ensure your Redis instance [is secured](https://redis.io/docs/getting-started/#securing-redis). + Ensure your Redis instance [is secured](https://redis.io/docs/latest/operate/oss_and_stack/management/security/). 7. Create the following directories if they are missing: From 7cd802cf48d742bab5afee5c91fb3c29b5ca315a Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 15 Nov 2025 14:24:15 -0800 Subject: [PATCH 072/133] Bump version to 2.19.6 --- pyproject.toml | 2 +- src-ui/package.json | 2 +- src-ui/src/environments/environment.prod.ts | 2 +- src/paperless/version.py | 2 +- uv.lock | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1c3f1ee2f..8c54ce8ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "paperless-ngx" -version = "2.19.5" +version = "2.19.6" description = "A community-supported supercharged document management system: scan, index and archive all your physical documents" readme = "README.md" requires-python = ">=3.10" diff --git a/src-ui/package.json b/src-ui/package.json index c5e945759..339b378c2 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -1,6 +1,6 @@ { "name": "paperless-ngx-ui", - "version": "2.19.5", + "version": "2.19.6", "scripts": { "preinstall": "npx only-allow pnpm", "ng": "ng", diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index 8bec5f2e6..b81beb1c5 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -6,7 +6,7 @@ export const environment = { apiVersion: '9', // match src/paperless/settings.py appTitle: 'Paperless-ngx', tag: 'prod', - version: '2.19.5', + version: '2.19.6', webSocketHost: window.location.host, webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:', webSocketBaseUrl: base_url.pathname + 'ws/', diff --git a/src/paperless/version.py b/src/paperless/version.py index 8efbb2728..5657b929a 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1,6 +1,6 @@ from typing import Final -__version__: Final[tuple[int, int, int]] = (2, 19, 5) +__version__: Final[tuple[int, int, int]] = (2, 19, 6) # Version string like X.Y.Z __full_version_str__: Final[str] = ".".join(map(str, __version__)) # Version string like X.Y diff --git a/uv.lock b/uv.lock index c6808ae7b..17d7d9f30 100644 --- a/uv.lock +++ b/uv.lock @@ -2115,7 +2115,7 @@ wheels = [ [[package]] name = "paperless-ngx" -version = "2.19.5" +version = "2.19.6" source = { virtual = "." } dependencies = [ { name = "babel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, From b6e3827ab19f8dd354a813dc9f57a69161c3b428 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Nov 2025 19:03:46 -0800 Subject: [PATCH 073/133] Documentation: Add v2.19.6 changelog (#11374) --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- docs/changelog.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/docs/changelog.md b/docs/changelog.md index 064e37adb..7abea13d4 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,35 @@ # Changelog +## paperless-ngx 2.19.6 + +### Bug Fixes + +- Chore: include password validation on user edit [@shamoon](https://github.com/shamoon) ([#11308](https://github.com/paperless-ngx/paperless-ngx/pull/11308)) +- Fix: include BASE_URL when constructing for workflows [@ebardsley](https://github.com/ebardsley) ([#11360](https://github.com/paperless-ngx/paperless-ngx/pull/11360)) +- Fixhancement: refactor email attachment logic [@shamoon](https://github.com/shamoon) ([#11336](https://github.com/paperless-ngx/paperless-ngx/pull/11336)) +- Fixhancement: trim whitespace for some text searches [@shamoon](https://github.com/shamoon) ([#11357](https://github.com/paperless-ngx/paperless-ngx/pull/11357)) +- Fix: update Outlook refresh token when refreshed [@shamoon](https://github.com/shamoon) ([#11341](https://github.com/paperless-ngx/paperless-ngx/pull/11341)) +- Fix: only cache remote version data for version checking [@shamoon](https://github.com/shamoon) ([#11320](https://github.com/paperless-ngx/paperless-ngx/pull/11320)) +- Fix: include replace none logic in storage path preview, improve jinja conditionals for empty metadata [@shamoon](https://github.com/shamoon) ([#11315](https://github.com/paperless-ngx/paperless-ngx/pull/11315)) + +### Dependencies + +- docker(deps): bump astral-sh/uv from 0.9.7-python3.12-bookworm-slim to 0.9.9-python3.12-bookworm-slim @[dependabot[bot]](https://github.com/apps/dependabot) ([#11338](https://github.com/paperless-ngx/paperless-ngx/pull/11338)) + +### All App Changes + +
+7 changes + +- Fix: include BASE_URL when constructing for workflows [@ebardsley](https://github.com/ebardsley) ([#11360](https://github.com/paperless-ngx/paperless-ngx/pull/11360)) +- Fixhancement: refactor email attachment logic [@shamoon](https://github.com/shamoon) ([#11336](https://github.com/paperless-ngx/paperless-ngx/pull/11336)) +- Fixhancement: trim whitespace for some text searches [@shamoon](https://github.com/shamoon) ([#11357](https://github.com/paperless-ngx/paperless-ngx/pull/11357)) +- Fix: update Outlook refresh token when refreshed [@shamoon](https://github.com/shamoon) ([#11341](https://github.com/paperless-ngx/paperless-ngx/pull/11341)) +- Fix: only cache remote version data for version checking [@shamoon](https://github.com/shamoon) ([#11320](https://github.com/paperless-ngx/paperless-ngx/pull/11320)) +- Fix: include replace none logic in storage path preview, improve jinja conditionals for empty metadata [@shamoon](https://github.com/shamoon) ([#11315](https://github.com/paperless-ngx/paperless-ngx/pull/11315)) +- Chore: include password validation on user edit [@shamoon](https://github.com/shamoon) ([#11308](https://github.com/paperless-ngx/paperless-ngx/pull/11308)) +
+ ## paperless-ngx 2.19.5 ### Bug Fixes From b3d6359afc32af7a110b6e3aa8a877161157f04a Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 17 Nov 2025 10:02:32 -0800 Subject: [PATCH 074/133] Chore: set signal receivers with weak=False --- src/documents/management/commands/document_importer.py | 8 ++++++-- src/documents/signals/handlers.py | 6 +++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/documents/management/commands/document_importer.py b/src/documents/management/commands/document_importer.py index 282f5c48e..3e614c6a6 100644 --- a/src/documents/management/commands/document_importer.py +++ b/src/documents/management/commands/document_importer.py @@ -48,12 +48,13 @@ if settings.AUDIT_LOG_ENABLED: @contextmanager -def disable_signal(sig, receiver, sender) -> Generator: +def disable_signal(sig, receiver, sender, *, weak: bool | None = None) -> Generator: try: sig.disconnect(receiver=receiver, sender=sender) yield finally: - sig.connect(receiver=receiver, sender=sender) + kwargs = {"weak": weak} if weak is not None else {} + sig.connect(receiver=receiver, sender=sender, **kwargs) class Command(CryptMixin, BaseCommand): @@ -258,16 +259,19 @@ class Command(CryptMixin, BaseCommand): post_save, receiver=update_filename_and_move_files, sender=Document, + weak=False, ), disable_signal( m2m_changed, receiver=update_filename_and_move_files, sender=Document.tags.through, + weak=False, ), disable_signal( post_save, receiver=update_filename_and_move_files, sender=CustomFieldInstance, + weak=False, ), disable_signal( post_save, diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index 738ecb086..bce376f76 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -393,9 +393,9 @@ class CannotMoveFilesException(Exception): # should be disabled in /src/documents/management/commands/document_importer.py handle -@receiver(models.signals.post_save, sender=CustomFieldInstance) -@receiver(models.signals.m2m_changed, sender=Document.tags.through) -@receiver(models.signals.post_save, sender=Document) +@receiver(models.signals.post_save, sender=CustomFieldInstance, weak=False) +@receiver(models.signals.m2m_changed, sender=Document.tags.through, weak=False) +@receiver(models.signals.post_save, sender=Document, weak=False) def update_filename_and_move_files( sender, instance: Document | CustomFieldInstance, From 533b64cb70ca2f5d895bd34110020a84c5f3896a Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 17 Nov 2025 10:22:54 -0800 Subject: [PATCH 075/133] Chore: replace test image URLs to our own files (#11390) --- src/paperless_mail/tests/samples/html.eml | 2 +- src/paperless_mail/tests/samples/sample.html | 2 +- src/paperless_mail/tests/test_parsers_live.py | 37 ++----------------- 3 files changed, 6 insertions(+), 35 deletions(-) diff --git a/src/paperless_mail/tests/samples/html.eml b/src/paperless_mail/tests/samples/html.eml index 97747ceab..aaac68cc4 100644 --- a/src/paperless_mail/tests/samples/html.eml +++ b/src/paperless_mail/tests/samples/html.eml @@ -55,7 +55,7 @@ Content-Transfer-Encoding: 7bit

Some Text

Has to be rewritten to work.. - This image should not be shown. + This image should not be shown.

and an embedded image.
diff --git a/src/paperless_mail/tests/samples/sample.html b/src/paperless_mail/tests/samples/sample.html index 584cd5d64..c1fd52d43 100644 --- a/src/paperless_mail/tests/samples/sample.html +++ b/src/paperless_mail/tests/samples/sample.html @@ -6,7 +6,7 @@

Some Text

Has to be rewritten to work.. - This image should not be shown. + This image should not be shown.

and an embedded image.
diff --git a/src/paperless_mail/tests/test_parsers_live.py b/src/paperless_mail/tests/test_parsers_live.py index 456cb47d5..fd052cc26 100644 --- a/src/paperless_mail/tests/test_parsers_live.py +++ b/src/paperless_mail/tests/test_parsers_live.py @@ -2,7 +2,6 @@ import os import shutil import subprocess import tempfile -import time from pathlib import Path import httpx @@ -54,34 +53,6 @@ class TestUrlCanary: Verify certain URLs are still available so testing is valid still """ - @classmethod - def _fetch_wikimedia(cls, url: str) -> httpx.Response: - """ - Wikimedia occasionally throttles automated requests (HTTP 429). Retry a few - times with a short backoff so the tests stay stable, and skip if throttling - persists. - """ - last_resp: httpx.Response | None = None - # Wikimedia rejects requests without a browser-like User-Agent header and returns 403. - headers = { - "User-Agent": ( - "Mozilla/5.0 (X11; Linux x86_64) " - "AppleWebKit/537.36 (KHTML, like Gecko) " - "Chrome/123.0.0.0 Safari/537.36" - ), - } - for delay in (0, 1, 2): - resp = httpx.get(url, headers=headers, timeout=30.0) - if resp.status_code != httpx.codes.TOO_MANY_REQUESTS: - return resp - last_resp = resp - time.sleep(delay) - - pytest.skip( - "Wikimedia throttled the canary request with HTTP 429; try rerunning later.", - ) - return last_resp # pragma: no cover - def test_online_image_exception_on_not_available(self): """ GIVEN: @@ -96,8 +67,8 @@ class TestUrlCanary: whether this image stays online forever, so here we check if we can detect if is not available anymore. """ - resp = self._fetch_wikimedia( - "https://upload.wikimedia.org/wikipedia/en/f/f7/nonexistent.png", + resp = httpx.get( + "https://docs.paperless-ngx.com/assets/non-existent.png", ) with pytest.raises(httpx.HTTPStatusError) as exec_info: resp.raise_for_status() @@ -119,8 +90,8 @@ class TestUrlCanary: """ # Now check the URL used in samples/sample.html - resp = self._fetch_wikimedia( - "https://upload.wikimedia.org/wikipedia/en/f/f7/RickRoll.png", + resp = httpx.get( + "https://docs.paperless-ngx.com/assets/logo_full_white.svg", ) resp.raise_for_status() From 0e5ab7f3e0ccaf03fbcd90f9b484756f7f1b289b Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 17 Nov 2025 12:47:55 -0800 Subject: [PATCH 076/133] Fix: support for custom field ordering w advanced search (#11383) --- src/documents/index.py | 90 +++++++++++++++++++++++--- src/documents/tests/test_api_search.py | 59 +++++++++++++++++ 2 files changed, 140 insertions(+), 9 deletions(-) diff --git a/src/documents/index.py b/src/documents/index.py index 90cbb8000..9446c7db1 100644 --- a/src/documents/index.py +++ b/src/documents/index.py @@ -287,15 +287,75 @@ class DelayedQuery: self.first_score = None self.filter_queryset = filter_queryset self.suggested_correction = None + self._manual_hits_cache: list | None = None def __len__(self) -> int: + if self._manual_sort_requested(): + manual_hits = self._manual_hits() + return len(manual_hits) + page = self[0:1] return len(page) + def _manual_sort_requested(self): + ordering = self.query_params.get("ordering", "") + return ordering.lstrip("-").startswith("custom_field_") + + def _manual_hits(self): + if self._manual_hits_cache is None: + q, mask, suggested_correction = self._get_query() + self.suggested_correction = suggested_correction + + results = self.searcher.search( + q, + mask=mask, + filter=MappedDocIdSet(self.filter_queryset, self.searcher.ixreader), + limit=None, + ) + results.fragmenter = highlight.ContextFragmenter(surround=50) + results.formatter = HtmlFormatter(tagname="span", between=" ... ") + + if not self.first_score and len(results) > 0: + self.first_score = results[0].score + + if self.first_score: + results.top_n = [ + ( + (hit[0] / self.first_score) if self.first_score else None, + hit[1], + ) + for hit in results.top_n + ] + + hits_by_id = {hit["id"]: hit for hit in results} + matching_ids = list(hits_by_id.keys()) + + ordered_ids = list( + self.filter_queryset.filter(id__in=matching_ids).values_list( + "id", + flat=True, + ), + ) + ordered_ids = list(dict.fromkeys(ordered_ids)) + + self._manual_hits_cache = [ + hits_by_id[_id] for _id in ordered_ids if _id in hits_by_id + ] + return self._manual_hits_cache + def __getitem__(self, item): if item.start in self.saved_results: return self.saved_results[item.start] + if self._manual_sort_requested(): + manual_hits = self._manual_hits() + start = 0 if item.start is None else item.start + stop = item.stop + hits = manual_hits[start:stop] if stop is not None else manual_hits[start:] + page = ManualResultsPage(hits) + self.saved_results[start] = page + return page + q, mask, suggested_correction = self._get_query() self.suggested_correction = suggested_correction sortedby, reverse = self._get_query_sortedby() @@ -315,21 +375,33 @@ class DelayedQuery: if not self.first_score and len(page.results) > 0 and sortedby is None: self.first_score = page.results[0].score - page.results.top_n = list( - map( - lambda hit: ( - (hit[0] / self.first_score) if self.first_score else None, - hit[1], - ), - page.results.top_n, - ), - ) + page.results.top_n = [ + ( + (hit[0] / self.first_score) if self.first_score else None, + hit[1], + ) + for hit in page.results.top_n + ] self.saved_results[item.start] = page return page +class ManualResultsPage(list): + def __init__(self, hits): + super().__init__(hits) + self.results = ManualResults(hits) + + +class ManualResults: + def __init__(self, hits): + self._docnums = [hit.docnum for hit in hits] + + def docs(self): + return self._docnums + + class LocalDateParser(English): def reverse_timezone_offset(self, d): return (d.replace(tzinfo=django_timezone.get_current_timezone())).astimezone( diff --git a/src/documents/tests/test_api_search.py b/src/documents/tests/test_api_search.py index 8f316c145..5a2fc9b52 100644 --- a/src/documents/tests/test_api_search.py +++ b/src/documents/tests/test_api_search.py @@ -89,6 +89,65 @@ class TestDocumentSearchApi(DirectoriesMixin, APITestCase): self.assertEqual(len(results), 0) self.assertCountEqual(response.data["all"], []) + def test_search_custom_field_ordering(self): + custom_field = CustomField.objects.create( + name="Sortable field", + data_type=CustomField.FieldDataType.INT, + ) + d1 = Document.objects.create( + title="first", + content="match", + checksum="A1", + ) + d2 = Document.objects.create( + title="second", + content="match", + checksum="B2", + ) + d3 = Document.objects.create( + title="third", + content="match", + checksum="C3", + ) + CustomFieldInstance.objects.create( + document=d1, + field=custom_field, + value_int=30, + ) + CustomFieldInstance.objects.create( + document=d2, + field=custom_field, + value_int=10, + ) + CustomFieldInstance.objects.create( + document=d3, + field=custom_field, + value_int=20, + ) + + with AsyncWriter(index.open_index()) as writer: + index.update_document(writer, d1) + index.update_document(writer, d2) + index.update_document(writer, d3) + + response = self.client.get( + f"/api/documents/?query=match&ordering=custom_field_{custom_field.pk}", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertEqual( + [doc["id"] for doc in response.data["results"]], + [d2.id, d3.id, d1.id], + ) + + response = self.client.get( + f"/api/documents/?query=match&ordering=-custom_field_{custom_field.pk}", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertEqual( + [doc["id"] for doc in response.data["results"]], + [d1.id, d3.id, d2.id], + ) + def test_search_multi_page(self): with AsyncWriter(index.open_index()) as writer: for i in range(55): From c3ac102eba3641f8a43753068dc17a82966f8511 Mon Sep 17 00:00:00 2001 From: Michael Martin Date: Mon, 17 Nov 2025 13:11:49 -0800 Subject: [PATCH 077/133] Enhancement: speed-up docker container startup (#11134) This alters the retry/backoff logic in the init-wait-for-db script to be more optimistic about database availability. During regular deployment and operations of paperless-ngx, it's common to restart the application server with the database instance already running, so we should optimize for this case. Instead of unconditionally delaying 5 seconds between each connection attempt, start with a minimum delay of 1 second and increase the delay linearly with each attempt, maxing out at 10 seconds. This makes the retry count-based failure mode less practical, so instead we just use a timeout-based approach.* *NOTE: the original implementation would have an effective timeout of 25s. This alters the behavior to 60s. Additionally, this removes an unnecessary 5s delay that was injected in the postgres case. The script uses a more comprehensive connection check for postgres than it does mariadb, so if anything this 5s delay after getting an "ok" response from the DB was extra unnecessary in the postgres case. --- .../s6-overlay/s6-rc.d/init-wait-for-db/run | 90 +++++++++---------- 1 file changed, 43 insertions(+), 47 deletions(-) diff --git a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run index ede8a654a..1739edd61 100755 --- a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run +++ b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run @@ -1,70 +1,66 @@ #!/command/with-contenv /usr/bin/bash # shellcheck shell=bash +# vim: set ft=bash ts=4 sw=4 sts=4 et : -declare -r log_prefix="[init-db-wait]" +set -euo pipefail + +declare -r LOG_PREFIX="[init-db-wait]" + +declare -ri TIMEOUT=60 +declare -i ATTEMPT=0 +declare -i DELAY=0 +declare -i STARTED_AT=${EPOCHSECONDS:?EPOCHSECONDS var unset} + +delay_next_attempt() { + local -i elapsed=$(( EPOCHSECONDS - STARTED_AT )) + local -ri remaining=$(( TIMEOUT - elapsed )) + + if (( remaining <= 0 )); then + echo "${LOG_PREFIX} Unable to connect after $elapsed seconds." + exit 1 + fi + + DELAY+=1 + + # clamp to remaining time + if (( DELAY > remaining )); then + DELAY=$remaining + fi + + ATTEMPT+=1 + echo "${LOG_PREFIX} Attempt $ATTEMPT failed! Trying again in $DELAY seconds..." + sleep "$DELAY" +} wait_for_postgres() { - local attempt_num=1 - local -r max_attempts=5 - - echo "${log_prefix} Waiting for PostgreSQL to start..." + echo "${LOG_PREFIX} Waiting for PostgreSQL to start..." local -r host="${PAPERLESS_DBHOST:-localhost}" local -r port="${PAPERLESS_DBPORT:-5432}" local -r user="${PAPERLESS_DBUSER:-paperless}" - # Disable warning, host and port can't have spaces - # shellcheck disable=SC2086 - while [ ! "$(pg_isready -h ${host} -p ${port} --username ${user})" ]; do - - if [ $attempt_num -eq $max_attempts ]; then - echo "${log_prefix} Unable to connect to database." - exit 1 - else - echo "${log_prefix} Attempt $attempt_num failed! Trying again in 5 seconds..." - fi - - attempt_num=$(("$attempt_num" + 1)) - sleep 5 + while ! pg_isready -h "${host}" -p "${port}" --username "${user}"; do + delay_next_attempt done - # Extra in case this is a first start - sleep 5 - echo "Connected to PostgreSQL" + echo "${LOG_PREFIX} Connected to PostgreSQL" } wait_for_mariadb() { - echo "${log_prefix} Waiting for MariaDB to start..." + echo "${LOG_PREFIX} Waiting for MariaDB to start..." - local -r host="${PAPERLESS_DBHOST:=localhost}" - local -r port="${PAPERLESS_DBPORT:=3306}" + local -r host="${PAPERLESS_DBHOST:-localhost}" + local -r port="${PAPERLESS_DBPORT:-3306}" - local attempt_num=1 - local -r max_attempts=5 - - # Disable warning, host and port can't have spaces - # shellcheck disable=SC2086 - while ! true > /dev/tcp/$host/$port; do - - if [ $attempt_num -eq $max_attempts ]; then - echo "${log_prefix} Unable to connect to database." - exit 1 - else - echo "${log_prefix} Attempt $attempt_num failed! Trying again in 5 seconds..." - - fi - - attempt_num=$(("$attempt_num" + 1)) - sleep 5 + while ! true > "/dev/tcp/$host/$port"; do + delay_next_attempt done - echo "Connected to MariaDB" + echo "${LOG_PREFIX} Connected to MariaDB" } -if [[ "${PAPERLESS_DBENGINE}" == "mariadb" ]]; then - echo "${log_prefix} Waiting for MariaDB to report ready" +if [[ "${PAPERLESS_DBENGINE:-}" == "mariadb" ]]; then wait_for_mariadb -elif [[ -n "${PAPERLESS_DBHOST}" ]]; then - echo "${log_prefix} Waiting for postgresql to report ready" +elif [[ -n "${PAPERLESS_DBHOST:-}" ]]; then wait_for_postgres fi - echo "${log_prefix} Database is ready" +echo "${LOG_PREFIX} Database is ready" From a45692aa0f716bf7ad893d6f1693e96e83b3c098 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 13:38:26 -0800 Subject: [PATCH 078/133] docker(deps): bump astral-sh/uv (#11394) --- updated-dependencies: - dependency-name: astral-sh/uv dependency-version: 0.9.10-python3.12-bookworm-slim dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 49423d98a..aca06edc5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN set -eux \ # Purpose: Installs s6-overlay and rootfs # Comments: # - Don't leave anything extra in here either -FROM ghcr.io/astral-sh/uv:0.9.9-python3.12-bookworm-slim AS s6-overlay-base +FROM ghcr.io/astral-sh/uv:0.9.10-python3.12-bookworm-slim AS s6-overlay-base WORKDIR /usr/src/s6 From b053b353322507a6cfdb979f9735a2f27dd65a0e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 21:58:10 +0000 Subject: [PATCH 079/133] Chore(deps): Update django-allauth[mfa,socialaccount] requirement from ~=65.4.0 to ~=65.12.1 (#11198) * Chore(deps): Update django-allauth[mfa,socialaccount] requirement --- updated-dependencies: - dependency-name: django-allauth[mfa,socialaccount] dependency-version: 65.12.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] * Update ratelimit mock path --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- pyproject.toml | 2 +- src/paperless/tests/test_adapter.py | 4 ++-- uv.lock | 21 ++++----------------- 3 files changed, 7 insertions(+), 20 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8c54ce8ae..b0b57279c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ dependencies = [ # WARNING: django does not use semver. # Only patch versions are guaranteed to not introduce breaking changes. "django~=5.2.5", - "django-allauth[mfa,socialaccount]~=65.4.0", + "django-allauth[mfa,socialaccount]~=65.12.1", "django-auditlog~=3.2.1", "django-cachalot~=2.8.0", "django-celery-results~=2.6.0", diff --git a/src/paperless/tests/test_adapter.py b/src/paperless/tests/test_adapter.py index b87c47096..bbd7ff73e 100644 --- a/src/paperless/tests/test_adapter.py +++ b/src/paperless/tests/test_adapter.py @@ -54,8 +54,8 @@ class TestCustomAccountAdapter(TestCase): # False because request host is not in allowed hosts self.assertFalse(adapter.is_safe_url(url)) - @mock.patch("allauth.core.ratelimit._consume_rate", return_value=True) - def test_pre_authenticate(self, mock_consume_rate): + @mock.patch("allauth.core.internal.ratelimit.consume", return_value=True) + def test_pre_authenticate(self, mock_consume): adapter = get_adapter() request = HttpRequest() request.get_host = mock.Mock(return_value="example.com") diff --git a/uv.lock b/uv.lock index 17d7d9f30..c40b0d273 100644 --- a/uv.lock +++ b/uv.lock @@ -689,13 +689,13 @@ wheels = [ [[package]] name = "django-allauth" -version = "65.4.1" +version = "65.12.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "asgiref", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "django", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b1/e7/b3232c27da9f43e3db72d16addd90891ee233fa058ddd0588bafcded2ea7/django_allauth-65.4.1.tar.gz", hash = "sha256:60b32aef7dbbcc213319aa4fd8f570e985266ea1162ae6ef7a26a24efca85c8c", size = 1558220, upload-time = "2025-02-07T09:35:18.359Z" } +sdist = { url = "https://files.pythonhosted.org/packages/52/94/75d7f8c59e061d1b66a6d917b287817fe02d2671c9e6376a4ddfb3954989/django_allauth-65.12.1.tar.gz", hash = "sha256:662666ff2d5c71766f66b1629ac7345c30796813221184e13e11ed7460940c6a", size = 1967971, upload-time = "2025-10-16T16:39:58.342Z" } [package.optional-dependencies] mfa = [ @@ -703,9 +703,9 @@ mfa = [ { name = "qrcode", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] socialaccount = [ + { name = "oauthlib", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "pyjwt", extra = ["crypto"], marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "requests-oauthlib", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] [[package]] @@ -2262,7 +2262,7 @@ requires-dist = [ { name = "concurrent-log-handler", specifier = "~=0.9.25" }, { name = "dateparser", specifier = "~=1.2" }, { name = "django", specifier = "~=5.2.5" }, - { name = "django-allauth", extras = ["mfa", "socialaccount"], specifier = "~=65.4.0" }, + { name = "django-allauth", extras = ["mfa", "socialaccount"], specifier = "~=65.12.1" }, { name = "django-auditlog", specifier = "~=3.2.1" }, { name = "django-cachalot", specifier = "~=2.8.0" }, { name = "django-celery-results", specifier = "~=2.6.0" }, @@ -3379,19 +3379,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" }, ] -[[package]] -name = "requests-oauthlib" -version = "2.0.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "oauthlib", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/42/f2/05f29bc3913aea15eb670be136045bf5c5bbf4b99ecb839da9b422bb2c85/requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9", size = 55650, upload-time = "2024-03-22T20:32:29.939Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3b/5d/63d4ae3b9daea098d5d6f5da83984853c1bbacd5dc826764b249fe119d24/requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36", size = 24179, upload-time = "2024-03-22T20:32:28.055Z" }, -] - [[package]] name = "rich" version = "14.1.0" From c924213f32a1307c4911ce2a3b3c9014668e56d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 22:26:33 +0000 Subject: [PATCH 080/133] Chore(deps): Bump django-filter from 25.1 to 25.2 (#11020) Bumps [django-filter](https://github.com/carltongibson/django-filter) from 25.1 to 25.2. - [Release notes](https://github.com/carltongibson/django-filter/releases) - [Changelog](https://github.com/carltongibson/django-filter/blob/main/CHANGES.rst) - [Commits](https://github.com/carltongibson/django-filter/compare/25.1...25.2) --- updated-dependencies: - dependency-name: django-filter dependency-version: '25.2' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- uv.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/uv.lock b/uv.lock index c40b0d273..eff1972ca 100644 --- a/uv.lock +++ b/uv.lock @@ -787,14 +787,14 @@ wheels = [ [[package]] name = "django-filter" -version = "25.1" +version = "25.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "django", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b5/40/c702a6fe8cccac9bf426b55724ebdf57d10a132bae80a17691d0cf0b9bac/django_filter-25.1.tar.gz", hash = "sha256:1ec9eef48fa8da1c0ac9b411744b16c3f4c31176c867886e4c48da369c407153", size = 143021, upload-time = "2025-02-14T16:30:53.238Z" } +sdist = { url = "https://files.pythonhosted.org/packages/2c/e4/465d2699cd388c0005fb8d6ae6709f239917c6d8790ac35719676fffdcf3/django_filter-25.2.tar.gz", hash = "sha256:760e984a931f4468d096f5541787efb8998c61217b73006163bf2f9523fe8f23", size = 143818, upload-time = "2025-10-05T09:51:31.521Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/07/a6/70dcd68537c434ba7cb9277d403c5c829caf04f35baf5eb9458be251e382/django_filter-25.1-py3-none-any.whl", hash = "sha256:4fa48677cf5857b9b1347fed23e355ea792464e0fe07244d1fdfb8a806215b80", size = 94114, upload-time = "2025-02-14T16:30:50.435Z" }, + { url = "https://files.pythonhosted.org/packages/c1/40/6a02495c5658beb1f31eb09952d8aa12ef3c2a66342331ce3a35f7132439/django_filter-25.2-py3-none-any.whl", hash = "sha256:9c0f8609057309bba611062fe1b720b4a873652541192d232dd28970383633e3", size = 94145, upload-time = "2025-10-05T09:51:29.728Z" }, ] [[package]] From beb5fe22321178645b117a8cb5dd93595e74be0c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 22:55:50 +0000 Subject: [PATCH 081/133] Chore(deps): Bump drf-spectacular-sidecar from 2025.9.1 to 2025.10.1 (#11019) Bumps [drf-spectacular-sidecar](https://github.com/tfranzel/drf-spectacular-sidecar) from 2025.9.1 to 2025.10.1. - [Commits](https://github.com/tfranzel/drf-spectacular-sidecar/compare/2025.9.1...2025.10.1) --- updated-dependencies: - dependency-name: drf-spectacular-sidecar dependency-version: 2025.10.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pyproject.toml | 2 +- uv.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b0b57279c..84da482ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,7 @@ dependencies = [ "djangorestframework~=3.16", "djangorestframework-guardian~=0.4.0", "drf-spectacular~=0.28", - "drf-spectacular-sidecar~=2025.9.1", + "drf-spectacular-sidecar~=2025.10.1", "drf-writable-nested~=0.7.1", "filelock~=3.20.0", "flower~=2.0.1", diff --git a/uv.lock b/uv.lock index eff1972ca..d26f5cc60 100644 --- a/uv.lock +++ b/uv.lock @@ -959,14 +959,14 @@ wheels = [ [[package]] name = "drf-spectacular-sidecar" -version = "2025.9.1" +version = "2025.10.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "django", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/51/e2/85a0b8dbed8631165a6b49b2aee57636da8e4e710c444566636ffd972a7b/drf_spectacular_sidecar-2025.9.1.tar.gz", hash = "sha256:da2aa45da48fff76de7a1e357b84d1eb0b9df40ca89ec19d5fe94ad1037bb3c8", size = 2420902, upload-time = "2025-09-01T11:23:24.156Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/e4/99cd1b1c8c69788bd6cb6a2459674f8c75728e79df23ac7beddd094bf805/drf_spectacular_sidecar-2025.10.1.tar.gz", hash = "sha256:506a5a21ce1ad7211c28acb4e2112e213f6dc095a2052ee6ed6db1ffe8eb5a7b", size = 2420998, upload-time = "2025-10-01T11:23:27.092Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/96/24/db59146ba89491fe1d44ca8aef239c94bf3c7fd41523976090f099430312/drf_spectacular_sidecar-2025.9.1-py3-none-any.whl", hash = "sha256:8e80625209b8a23ff27616db305b9ab71c2e2d1069dacd99720a9c11e429af50", size = 2440255, upload-time = "2025-09-01T11:23:22.822Z" }, + { url = "https://files.pythonhosted.org/packages/ab/87/70c67391e4ce68715d4dfae8dd33caeda2552af22f436ba55b8867a040fe/drf_spectacular_sidecar-2025.10.1-py3-none-any.whl", hash = "sha256:f1de343184d1a938179ce363d318258fe1e5f02f2f774625272364835f1c42bd", size = 2440241, upload-time = "2025-10-01T11:23:25.743Z" }, ] [[package]] @@ -2277,7 +2277,7 @@ requires-dist = [ { name = "djangorestframework", specifier = "~=3.16" }, { name = "djangorestframework-guardian", specifier = "~=0.4.0" }, { name = "drf-spectacular", specifier = "~=0.28" }, - { name = "drf-spectacular-sidecar", specifier = "~=2025.9.1" }, + { name = "drf-spectacular-sidecar", specifier = "~=2025.10.1" }, { name = "drf-writable-nested", specifier = "~=0.7.1" }, { name = "filelock", specifier = "~=3.20.0" }, { name = "flower", specifier = "~=2.0.1" }, From f7f94762b69d6aac2d0fc036da32ba9c12c76fab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 23:13:30 +0000 Subject: [PATCH 082/133] Chore(deps): Bump the actions group with 7 updates (#11259) Bumps the actions group with 7 updates: | Package | From | To | | --- | --- | --- | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `6` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/setup-node](https://github.com/actions/setup-node) | `5` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [stumpylog/image-cleaner-action](https://github.com/stumpylog/image-cleaner-action) | `0.11.0` | `0.12.0` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) | `6` | `7` | Updates `astral-sh/setup-uv` from 6 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/v6...v7) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) Updates `actions/setup-node` from 5 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v5...v6) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) Updates `stumpylog/image-cleaner-action` from 0.11.0 to 0.12.0 - [Release notes](https://github.com/stumpylog/image-cleaner-action/releases) - [Changelog](https://github.com/stumpylog/image-cleaner-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/stumpylog/image-cleaner-action/compare/v0.11.0...v0.12.0) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3...v4) Updates `stefanzweifel/git-auto-commit-action` from 6 to 7 - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/stefanzweifel/git-auto-commit-action/compare/v6...v7) --- updated-dependencies: - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: stumpylog/image-cleaner-action dependency-version: 0.12.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: stefanzweifel/git-auto-commit-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 28 ++++++++++++------------- .github/workflows/cleanup-tags.yml | 4 ++-- .github/workflows/codeql-analysis.yml | 4 ++-- .github/workflows/translate-strings.yml | 6 +++--- 4 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17e9a4109..76ab247fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,7 +88,7 @@ jobs: with: python-version: ${{ env.DEFAULT_PYTHON_VERSION }} - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 with: version: ${{ env.DEFAULT_UV_VERSION }} enable-cache: true @@ -115,7 +115,7 @@ jobs: --frozen \ mkdocs gh-deploy --force --no-history - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: documentation path: site/ @@ -142,7 +142,7 @@ jobs: with: python-version: "${{ matrix.python-version }}" - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 with: version: ${{ env.DEFAULT_UV_VERSION }} enable-cache: true @@ -208,7 +208,7 @@ jobs: with: version: 10 - name: Use Node.js 20 - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20.x cache: 'pnpm' @@ -241,7 +241,7 @@ jobs: with: version: 10 - name: Use Node.js 20 - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20.x cache: 'pnpm' @@ -290,7 +290,7 @@ jobs: with: version: 10 - name: Use Node.js 20 - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20.x cache: 'pnpm' @@ -333,7 +333,7 @@ jobs: with: version: 10 - name: Use Node.js 20 - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20.x cache: 'pnpm' @@ -459,7 +459,7 @@ jobs: docker create --name frontend-extract ${{ fromJSON(steps.docker-meta.outputs.json).tags[0] }} docker cp frontend-extract:/usr/src/paperless/src/documents/static/frontend src/documents/static/frontend/ - name: Upload frontend artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: frontend-compiled path: src/documents/static/frontend/ @@ -479,7 +479,7 @@ jobs: with: python-version: ${{ env.DEFAULT_PYTHON_VERSION }} - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 with: version: ${{ env.DEFAULT_UV_VERSION }} enable-cache: true @@ -492,12 +492,12 @@ jobs: sudo apt-get update -qq sudo apt-get install -qq --no-install-recommends gettext liblept5 - name: Download frontend artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: frontend-compiled path: src/documents/static/frontend/ - name: Download documentation artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: documentation path: docs/_build/html/ @@ -560,7 +560,7 @@ jobs: sudo chown -R 1000:1000 paperless-ngx/ tar -cJf paperless-ngx.tar.xz paperless-ngx/ - name: Upload release artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: release path: dist/paperless-ngx.tar.xz @@ -577,7 +577,7 @@ jobs: if: github.ref_type == 'tag' && (startsWith(github.ref_name, 'v') || contains(github.ref_name, '-beta.rc')) steps: - name: Download release artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: release path: ./ @@ -627,7 +627,7 @@ jobs: with: python-version: ${{ env.DEFAULT_PYTHON_VERSION }} - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 with: version: ${{ env.DEFAULT_UV_VERSION }} enable-cache: true diff --git a/.github/workflows/cleanup-tags.yml b/.github/workflows/cleanup-tags.yml index e0d81bb4a..bc2ae655f 100644 --- a/.github/workflows/cleanup-tags.yml +++ b/.github/workflows/cleanup-tags.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Clean temporary images if: "${{ env.TOKEN != '' }}" - uses: stumpylog/image-cleaner-action/ephemeral@v0.11.0 + uses: stumpylog/image-cleaner-action/ephemeral@v0.12.0 with: token: "${{ env.TOKEN }}" owner: "${{ github.repository_owner }}" @@ -53,7 +53,7 @@ jobs: steps: - name: Clean untagged images if: "${{ env.TOKEN != '' }}" - uses: stumpylog/image-cleaner-action/untagged@v0.11.0 + uses: stumpylog/image-cleaner-action/untagged@v0.12.0 with: token: "${{ env.TOKEN }}" owner: "${{ github.repository_owner }}" diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index b8acfeeff..77913ba81 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -37,7 +37,7 @@ jobs: uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -45,4 +45,4 @@ jobs: # Prefix the list here with "+" to use these queries and those in the config file. # queries: ./path/to/local/query, your-org/your-repo/queries@main - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 diff --git a/.github/workflows/translate-strings.yml b/.github/workflows/translate-strings.yml index f94191f19..a3326cbcf 100644 --- a/.github/workflows/translate-strings.yml +++ b/.github/workflows/translate-strings.yml @@ -23,7 +23,7 @@ jobs: sudo apt-get update -qq sudo apt-get install -qq --no-install-recommends gettext - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 with: enable-cache: true - name: Install backend python dependencies @@ -38,7 +38,7 @@ jobs: with: version: 10 - name: Use Node.js 20 - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: 20.x cache: 'pnpm' @@ -61,7 +61,7 @@ jobs: cd src-ui pnpm run ng extract-i18n - name: Commit changes - uses: stefanzweifel/git-auto-commit-action@v6 + uses: stefanzweifel/git-auto-commit-action@v7 with: file_pattern: 'src-ui/messages.xlf src/locale/en_US/LC_MESSAGES/django.po' commit_message: "Auto translate strings" From 56493d6640deae46b1aed3b4e01a1f6fce8bc2b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 23:52:47 +0000 Subject: [PATCH 083/133] Chore(deps): Bump django-auditlog from 3.2.1 to 3.3.0 (#11021) Bumps [django-auditlog](https://github.com/jazzband/django-auditlog) from 3.2.1 to 3.3.0. - [Release notes](https://github.com/jazzband/django-auditlog/releases) - [Changelog](https://github.com/jazzband/django-auditlog/blob/master/CHANGELOG.md) - [Commits](https://github.com/jazzband/django-auditlog/compare/v3.2.1...v3.3.0) --- updated-dependencies: - dependency-name: django-auditlog dependency-version: 3.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pyproject.toml | 2 +- uv.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 84da482ae..afd76c63c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ dependencies = [ # Only patch versions are guaranteed to not introduce breaking changes. "django~=5.2.5", "django-allauth[mfa,socialaccount]~=65.12.1", - "django-auditlog~=3.2.1", + "django-auditlog~=3.3.0", "django-cachalot~=2.8.0", "django-celery-results~=2.6.0", "django-compression-middleware~=0.5.0", diff --git a/uv.lock b/uv.lock index d26f5cc60..355aeec57 100644 --- a/uv.lock +++ b/uv.lock @@ -710,15 +710,15 @@ socialaccount = [ [[package]] name = "django-auditlog" -version = "3.2.1" +version = "3.3.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "django", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "python-dateutil", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/e1/46/9da1d94493832fa18d2f6324a76d387fa232001593866987a96047709f4e/django_auditlog-3.2.1.tar.gz", hash = "sha256:63a4c9f7793e94eed804bc31a04d9b0b58244b1d280e2ed273c8b406bff1f779", size = 72926, upload-time = "2025-07-03T20:08:17.734Z" } +sdist = { url = "https://files.pythonhosted.org/packages/37/d8/ddd1c653ffb7ed1984596420982e32a0b163a0be316721a801a54dcbf016/django_auditlog-3.3.0.tar.gz", hash = "sha256:01331a0e7bb1a8ff7573311b486c88f3d0c431c388f5a1e4a9b6b26911dd79b8", size = 85941, upload-time = "2025-10-02T17:16:27.591Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a7/06/67296d050a72dcd76f57f220df621cb27e5b9282ba7ad0f5f74870dce241/django_auditlog-3.2.1-py3-none-any.whl", hash = "sha256:99603ca9d015f7e9b062b1c34f3e0826a3ce6ae6e5950c81bb7e663f7802a899", size = 38330, upload-time = "2025-07-03T20:07:51.735Z" }, + { url = "https://files.pythonhosted.org/packages/f3/bc/6e1b503d1755ab09cff6480cb088def073f1303165ab59b1a09247a2e756/django_auditlog-3.3.0-py3-none-any.whl", hash = "sha256:ab0f0f556a7107ac01c8fa87137bdfbb2b6f0debf70f7753169d9a40673d2636", size = 39676, upload-time = "2025-10-02T17:15:42.922Z" }, ] [[package]] @@ -2263,7 +2263,7 @@ requires-dist = [ { name = "dateparser", specifier = "~=1.2" }, { name = "django", specifier = "~=5.2.5" }, { name = "django-allauth", extras = ["mfa", "socialaccount"], specifier = "~=65.12.1" }, - { name = "django-auditlog", specifier = "~=3.2.1" }, + { name = "django-auditlog", specifier = "~=3.3.0" }, { name = "django-cachalot", specifier = "~=2.8.0" }, { name = "django-celery-results", specifier = "~=2.6.0" }, { name = "django-compression-middleware", specifier = "~=0.5.0" }, From c31c244b54fb83399cc54d2402e35b1037e96159 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 18:47:16 -0800 Subject: [PATCH 084/133] Chore(deps): Bump the small-changes group across 1 directory with 11 updates (#11337) Bumps the small-changes group with 11 updates in the / directory: | Package | From | To | | --- | --- | --- | | [bleach](https://github.com/mozilla/bleach) | `6.2.0` | `6.3.0` | | [ocrmypdf](https://github.com/ocrmypdf/OCRmyPDF) | `16.11.0` | `16.11.1` | | [python-dotenv](https://github.com/theskumar/python-dotenv) | `1.1.1` | `1.2.1` | | [rapidfuzz](https://github.com/rapidfuzz/RapidFuzz) | `3.14.1` | `3.14.3` | | [psycopg-pool](https://github.com/psycopg/psycopg) | `3.2.6` | `3.2.7` | | [mkdocs-glightbox](https://github.com/blueswen/mkdocs-glightbox) | `0.5.1` | `0.5.2` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.6.22` | `9.6.23` | | [pre-commit](https://github.com/pre-commit/pre-commit) | `4.3.0` | `4.4.0` | | [ruff](https://github.com/astral-sh/ruff) | `0.14.0` | `0.14.4` | | [types-bleach](https://github.com/typeshed-internal/stub_uploader) | `6.2.0.20250809` | `6.3.0.20251029` | | [types-markdown](https://github.com/typeshed-internal/stub_uploader) | `3.9.0.20250906` | `3.10.0.20251106` | Updates `bleach` from 6.2.0 to 6.3.0 - [Changelog](https://github.com/mozilla/bleach/blob/main/CHANGES) - [Commits](https://github.com/mozilla/bleach/compare/v6.2.0...v6.3.0) Updates `ocrmypdf` from 16.11.0 to 16.11.1 - [Release notes](https://github.com/ocrmypdf/OCRmyPDF/releases) - [Changelog](https://github.com/ocrmypdf/OCRmyPDF/blob/main/docs/release_notes.md) - [Commits](https://github.com/ocrmypdf/OCRmyPDF/compare/v16.11.0...v16.11.1) Updates `python-dotenv` from 1.1.1 to 1.2.1 - [Release notes](https://github.com/theskumar/python-dotenv/releases) - [Changelog](https://github.com/theskumar/python-dotenv/blob/main/CHANGELOG.md) - [Commits](https://github.com/theskumar/python-dotenv/compare/v1.1.1...v1.2.1) Updates `rapidfuzz` from 3.14.1 to 3.14.3 - [Release notes](https://github.com/rapidfuzz/RapidFuzz/releases) - [Changelog](https://github.com/rapidfuzz/RapidFuzz/blob/main/CHANGELOG.rst) - [Commits](https://github.com/rapidfuzz/RapidFuzz/compare/v3.14.1...v3.14.3) Updates `psycopg-pool` from 3.2.6 to 3.2.7 - [Changelog](https://github.com/psycopg/psycopg/blob/master/docs/news.rst) - [Commits](https://github.com/psycopg/psycopg/compare/3.2.6...3.2.7) Updates `mkdocs-glightbox` from 0.5.1 to 0.5.2 - [Release notes](https://github.com/blueswen/mkdocs-glightbox/releases) - [Changelog](https://github.com/blueswen/mkdocs-glightbox/blob/main/CHANGELOG) - [Commits](https://github.com/blueswen/mkdocs-glightbox/compare/v0.5.1...v0.5.2) Updates `mkdocs-material` from 9.6.22 to 9.6.23 - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Commits](https://github.com/squidfunk/mkdocs-material/compare/9.6.22...9.6.23) Updates `pre-commit` from 4.3.0 to 4.4.0 - [Release notes](https://github.com/pre-commit/pre-commit/releases) - [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md) - [Commits](https://github.com/pre-commit/pre-commit/compare/v4.3.0...v4.4.0) Updates `ruff` from 0.14.0 to 0.14.4 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.14.0...0.14.4) Updates `types-bleach` from 6.2.0.20250809 to 6.3.0.20251029 - [Commits](https://github.com/typeshed-internal/stub_uploader/commits) Updates `types-markdown` from 3.9.0.20250906 to 3.10.0.20251106 - [Commits](https://github.com/typeshed-internal/stub_uploader/commits) --- updated-dependencies: - dependency-name: bleach dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: small-changes - dependency-name: ocrmypdf dependency-version: 16.11.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: small-changes - dependency-name: python-dotenv dependency-version: 1.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: small-changes - dependency-name: rapidfuzz dependency-version: 3.14.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: small-changes - dependency-name: psycopg-pool dependency-version: 3.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: small-changes - dependency-name: mkdocs-glightbox dependency-version: 0.5.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: small-changes - dependency-name: mkdocs-material dependency-version: 9.6.23 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: small-changes - dependency-name: pre-commit dependency-version: 4.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: small-changes - dependency-name: ruff dependency-version: 0.14.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: small-changes - dependency-name: types-bleach dependency-version: 6.3.0.20251029 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: small-changes - dependency-name: types-markdown dependency-version: 3.10.0.20251106 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: small-changes ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pyproject.toml | 12 +- uv.lock | 300 ++++++++++++++++++++++++------------------------- 2 files changed, 152 insertions(+), 160 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index afd76c63c..0654be626 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ classifiers = [ dependencies = [ "babel>=2.17", - "bleach~=6.2.0", + "bleach~=6.3.0", "celery[redis]~=5.5.1", "channels~=4.2", "channels-redis~=4.2", @@ -52,11 +52,11 @@ dependencies = [ "jinja2~=3.1.5", "langdetect~=1.0.9", "nltk~=3.9.1", - "ocrmypdf~=16.11.0", + "ocrmypdf~=16.12.0", "pathvalidate~=3.3.1", "pdf2image~=1.17.0", "python-dateutil~=2.9.0", - "python-dotenv~=1.1.0", + "python-dotenv~=1.2.1", "python-gnupg~=0.5.4", "python-ipware~=3.0.0", "python-magic~=0.4.27", @@ -80,7 +80,7 @@ optional-dependencies.postgres = [ "psycopg[c,pool]==3.2.9", # Direct dependency for proper resolution of the pre-built wheels "psycopg-c==3.2.9", - "psycopg-pool==3.2.6", + "psycopg-pool==3.2.7", ] optional-dependencies.webserver = [ "granian[uvloop]~=2.5.1", @@ -96,7 +96,7 @@ dev = [ docs = [ "mkdocs-glightbox~=0.5.1", - "mkdocs-material~=9.6.4", + "mkdocs-material~=9.7.0", ] testing = [ @@ -115,7 +115,7 @@ testing = [ ] lint = [ - "pre-commit~=4.3.0", + "pre-commit~=4.4.0", "pre-commit-uv~=4.2.0", "ruff~=0.14.0", ] diff --git a/uv.lock b/uv.lock index 355aeec57..41eb0778a 100644 --- a/uv.lock +++ b/uv.lock @@ -129,14 +129,14 @@ wheels = [ [[package]] name = "bleach" -version = "6.2.0" +version = "6.3.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "webencodings", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/76/9a/0e33f5054c54d349ea62c277191c020c2d6ef1d65ab2cb1993f91ec846d1/bleach-6.2.0.tar.gz", hash = "sha256:123e894118b8a599fd80d3ec1a6d4cc7ce4e5882b1317a7e1ba69b56e95f991f", size = 203083, upload-time = "2024-10-29T18:30:40.477Z" } +sdist = { url = "https://files.pythonhosted.org/packages/07/18/3c8523962314be6bf4c8989c79ad9531c825210dd13a8669f6b84336e8bd/bleach-6.3.0.tar.gz", hash = "sha256:6f3b91b1c0a02bb9a78b5a454c92506aa0fdf197e1d5e114d2e00c6f64306d22", size = 203533, upload-time = "2025-10-27T17:57:39.211Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl", hash = "sha256:117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e", size = 163406, upload-time = "2024-10-29T18:30:38.186Z" }, + { url = "https://files.pythonhosted.org/packages/cd/3a/577b549de0cc09d95f11087ee63c739bba856cd3952697eec4c4bb91350a/bleach-6.3.0-py3-none-any.whl", hash = "sha256:fe10ec77c93ddf3d13a73b035abaac7a9f5e436513864ccdad516693213c65d6", size = 164437, upload-time = "2025-10-27T17:57:37.538Z" }, ] [[package]] @@ -1783,19 +1783,19 @@ wheels = [ [[package]] name = "mkdocs-glightbox" -version = "0.5.1" +version = "0.5.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "selectolax", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/8b/72/c03e9d8d2dbe098d7ce5d51309933a1d3aea268965ed097ab16f4b54de15/mkdocs_glightbox-0.5.1.tar.gz", hash = "sha256:7d78a5b045f2479f61b0bbb17742ba701755c56b013e70ac189c9d87a91e80bf", size = 480028, upload-time = "2025-09-04T13:10:29.679Z" } +sdist = { url = "https://files.pythonhosted.org/packages/8d/26/c793459622da8e31f954c6f5fb51e8f098143fdfc147b1e3c25bf686f4aa/mkdocs_glightbox-0.5.2.tar.gz", hash = "sha256:c7622799347c32310878e01ccf14f70648445561010911c80590cec0353370ac", size = 510586, upload-time = "2025-10-23T14:55:18.909Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/30/cf/e9a0ce9da269746906fdc595c030f6df66793dad1487abd1699af2ba44f1/mkdocs_glightbox-0.5.1-py3-none-any.whl", hash = "sha256:f47af0daff164edf8d36e553338425be3aab6e34b987d9cbbc2ae7819a98cb01", size = 26431, upload-time = "2025-09-04T13:10:27.933Z" }, + { url = "https://files.pythonhosted.org/packages/4e/ca/03624e017e5ee2d7ce8a08d89f81c1e535eb3c30d7b2dc4a435ea3fbbeae/mkdocs_glightbox-0.5.2-py3-none-any.whl", hash = "sha256:23a431ea802b60b1030c73323db2eed6ba859df1a0822ce575afa43e0ea3f47e", size = 26458, upload-time = "2025-10-23T14:55:17.43Z" }, ] [[package]] name = "mkdocs-material" -version = "9.6.22" +version = "9.7.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "babel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, @@ -1810,9 +1810,9 @@ dependencies = [ { name = "pymdown-extensions", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/5f/5d/317e37b6c43325cb376a1d6439df9cc743b8ee41c84603c2faf7286afc82/mkdocs_material-9.6.22.tar.gz", hash = "sha256:87c158b0642e1ada6da0cbd798a3389b0bc5516b90e5ece4a0fb939f00bacd1c", size = 4044968, upload-time = "2025-10-15T09:21:15.409Z" } +sdist = { url = "https://files.pythonhosted.org/packages/9c/3b/111b84cd6ff28d9e955b5f799ef217a17bc1684ac346af333e6100e413cb/mkdocs_material-9.7.0.tar.gz", hash = "sha256:602b359844e906ee402b7ed9640340cf8a474420d02d8891451733b6b02314ec", size = 4094546, upload-time = "2025-11-11T08:49:09.73Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/cc/82/6fdb9a7a04fb222f4849ffec1006f891a0280825a20314d11f3ccdee14eb/mkdocs_material-9.6.22-py3-none-any.whl", hash = "sha256:14ac5f72d38898b2f98ac75a5531aaca9366eaa427b0f49fc2ecf04d99b7ad84", size = 9206252, upload-time = "2025-10-15T09:21:12.175Z" }, + { url = "https://files.pythonhosted.org/packages/04/87/eefe8d5e764f4cf50ed91b943f8e8f96b5efd65489d8303b7a36e2e79834/mkdocs_material-9.7.0-py3-none-any.whl", hash = "sha256:da2866ea53601125ff5baa8aa06404c6e07af3c5ce3d5de95e3b52b80b442887", size = 9283770, upload-time = "2025-11-11T08:49:06.26Z" }, ] [[package]] @@ -2077,7 +2077,7 @@ wheels = [ [[package]] name = "ocrmypdf" -version = "16.11.0" +version = "16.12.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "deprecation", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, @@ -2090,9 +2090,9 @@ dependencies = [ { name = "pluggy", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "rich", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/44/af/947d6abb0cb41f99971a7a4bd33684d3cee20c9e32c8f9dc90e8c5dcf21c/ocrmypdf-16.11.0.tar.gz", hash = "sha256:d89077e503238dac35c6e565925edc8d98b71e5289853c02cacbc1d0901f1be7", size = 7015068, upload-time = "2025-09-12T08:36:53.507Z" } +sdist = { url = "https://files.pythonhosted.org/packages/2b/ed/dacc0f189e4fcefc52d709e9961929e3f622a85efa5ae47c9d9663d75cab/ocrmypdf-16.12.0.tar.gz", hash = "sha256:a0f6509e7780b286391f8847fae1811d2b157b14283ad74a2431d6755c5c0ed0", size = 7037326, upload-time = "2025-11-11T22:30:14.223Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d9/b2/eda3bb0939bf81d889812dd82cf37fa6f8769af8e31008bd586ba12fae09/ocrmypdf-16.11.0-py3-none-any.whl", hash = "sha256:13628294a309c85b21947b5c7bc7fcd202464517c14b71a050adc9dde85c48f7", size = 162883, upload-time = "2025-09-12T08:36:51.611Z" }, + { url = "https://files.pythonhosted.org/packages/ce/34/d9d04420e6f7a71e2135b41599dae273e4ef36e2ce79b065b65fb2471636/ocrmypdf-16.12.0-py3-none-any.whl", hash = "sha256:0ea5c42027db9cf3bd12b0d0b4190689027ef813fdad3377106ea66bba0012c3", size = 163415, upload-time = "2025-11-11T22:30:11.56Z" }, ] [[package]] @@ -2255,7 +2255,7 @@ typing = [ [package.metadata] requires-dist = [ { name = "babel", specifier = ">=2.17" }, - { name = "bleach", specifier = "~=6.2.0" }, + { name = "bleach", specifier = "~=6.3.0" }, { name = "celery", extras = ["redis"], specifier = "~=5.5.1" }, { name = "channels", specifier = "~=4.2" }, { name = "channels-redis", specifier = "~=4.2" }, @@ -2290,16 +2290,16 @@ requires-dist = [ { name = "langdetect", specifier = "~=1.0.9" }, { name = "mysqlclient", marker = "extra == 'mariadb'", specifier = "~=2.2.7" }, { name = "nltk", specifier = "~=3.9.1" }, - { name = "ocrmypdf", specifier = "~=16.11.0" }, + { name = "ocrmypdf", specifier = "~=16.12.0" }, { name = "pathvalidate", specifier = "~=3.3.1" }, { name = "pdf2image", specifier = "~=1.17.0" }, { name = "psycopg", extras = ["c", "pool"], marker = "extra == 'postgres'", specifier = "==3.2.9" }, { name = "psycopg-c", marker = "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'postgres'", url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_aarch64.whl" }, { name = "psycopg-c", marker = "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'postgres'", url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_x86_64.whl" }, { name = "psycopg-c", marker = "(python_full_version != '3.12.*' and platform_machine == 'aarch64' and extra == 'postgres') or (python_full_version != '3.12.*' and platform_machine == 'x86_64' and extra == 'postgres') or (platform_machine != 'aarch64' and platform_machine != 'x86_64' and extra == 'postgres') or (sys_platform != 'linux' and extra == 'postgres')", specifier = "==3.2.9" }, - { name = "psycopg-pool", marker = "extra == 'postgres'", specifier = "==3.2.6" }, + { name = "psycopg-pool", marker = "extra == 'postgres'", specifier = "==3.2.7" }, { name = "python-dateutil", specifier = "~=2.9.0" }, - { name = "python-dotenv", specifier = "~=1.1.0" }, + { name = "python-dotenv", specifier = "~=1.2.1" }, { name = "python-gnupg", specifier = "~=0.5.4" }, { name = "python-ipware", specifier = "~=3.0.0" }, { name = "python-magic", specifier = "~=0.4.27" }, @@ -2325,8 +2325,8 @@ dev = [ { name = "factory-boy", specifier = "~=3.3.1" }, { name = "imagehash" }, { name = "mkdocs-glightbox", specifier = "~=0.5.1" }, - { name = "mkdocs-material", specifier = "~=9.6.4" }, - { name = "pre-commit", specifier = "~=4.3.0" }, + { name = "mkdocs-material", specifier = "~=9.7.0" }, + { name = "pre-commit", specifier = "~=4.4.0" }, { name = "pre-commit-uv", specifier = "~=4.2.0" }, { name = "pytest", specifier = "~=8.4.1" }, { name = "pytest-cov", specifier = "~=7.0.0" }, @@ -2341,10 +2341,10 @@ dev = [ ] docs = [ { name = "mkdocs-glightbox", specifier = "~=0.5.1" }, - { name = "mkdocs-material", specifier = "~=9.6.4" }, + { name = "mkdocs-material", specifier = "~=9.7.0" }, ] lint = [ - { name = "pre-commit", specifier = "~=4.3.0" }, + { name = "pre-commit", specifier = "~=4.4.0" }, { name = "pre-commit-uv", specifier = "~=4.2.0" }, { name = "ruff", specifier = "~=0.14.0" }, ] @@ -2475,7 +2475,7 @@ wheels = [ [[package]] name = "pikepdf" -version = "9.11.0" +version = "10.0.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "deprecated", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, @@ -2483,38 +2483,38 @@ dependencies = [ { name = "packaging", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "pillow", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/f5/4c/62b37a3ee301c245be6ad269ca771c2c5298bf049366e1094cfdf80d850c/pikepdf-9.11.0.tar.gz", hash = "sha256:5ad6bffba08849c21eee273ba0b6fcd4b6a9cff81bcbca6988f87a765ba62163", size = 4546289, upload-time = "2025-09-12T07:15:11.096Z" } +sdist = { url = "https://files.pythonhosted.org/packages/f7/79/9a63d5ccac66ace679cf93c84894db15074fe849d41cd39232cb09ec8819/pikepdf-10.0.2.tar.gz", hash = "sha256:7c85a2526253e35575edb2e28cdc740d004be4b7c5fda954f0e721ee1c423a52", size = 4548116, upload-time = "2025-11-10T18:10:08.765Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/66/0f/443a152687cb110e4adb7d998b413d124830cc8967a74e5f236c244c352b/pikepdf-9.11.0-cp310-cp310-macosx_13_0_x86_64.whl", hash = "sha256:8ac1adbb2e32a1cefb9fc51f1e892de1ce0af506f040593384b3af973a46089b", size = 4989446, upload-time = "2025-09-12T07:13:44.401Z" }, - { url = "https://files.pythonhosted.org/packages/4c/b4/a0f3208d2a95f75f1204bbb5a36f83441826fa8463edf92ff08810d4ed0b/pikepdf-9.11.0-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:f53ccda7be5aa7457a1b32b635a1e289dcdccb607b4fa7198a2c70e163fc0b8b", size = 4682716, upload-time = "2025-09-12T07:13:47.902Z" }, - { url = "https://files.pythonhosted.org/packages/a6/10/12a1f044b3e923a0998b0fb5f81265c4cbf0aa5f6e0d992782497241667e/pikepdf-9.11.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:491345765d819a9d9d4676bd55ccff15a043db794104325a181e1870ec511855", size = 2380569, upload-time = "2025-09-12T07:13:49.817Z" }, - { url = "https://files.pythonhosted.org/packages/91/3f/eec913d34c01076b02ccb5b897eae4381f95343a69e4a5e19d9783d667a3/pikepdf-9.11.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:501dd145a3e89ee25c612ae88530813f2612fe24abb178f2907d3cf7997a0719", size = 2597555, upload-time = "2025-09-12T07:13:51.459Z" }, - { url = "https://files.pythonhosted.org/packages/68/82/1d1d6e93d9a456d5309e79d17b32edf8f1faf635cb2106e36e4eccf67ddb/pikepdf-9.11.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ab2980881f8a8e500a1ce27e16a69907a87fe0875894ed5269586012794d6bd6", size = 3573555, upload-time = "2025-09-12T07:13:53.2Z" }, - { url = "https://files.pythonhosted.org/packages/ce/92/2c90ea29c11a4cc0e522b32259c1326e6ed58a58d5cf35c5b3436800cc40/pikepdf-9.11.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:eb5c579c1da45aa771d379eacf213daceb789055e11f851f662d17eafd56868e", size = 3757083, upload-time = "2025-09-12T07:13:55.337Z" }, - { url = "https://files.pythonhosted.org/packages/fd/19/5a648ca803c98e4195a3c5b4a9e28fc2f919ea6c71a9b30e3bd199ce728d/pikepdf-9.11.0-cp311-cp311-macosx_13_0_x86_64.whl", hash = "sha256:f501ff4c065246d4cf72d8bb50e248189b8d0cfcbf3c6388580658d011d41123", size = 4991632, upload-time = "2025-09-12T07:13:59.685Z" }, - { url = "https://files.pythonhosted.org/packages/73/1b/9b2e4b835ff8f43c9863866eb0841587dc7c5f4ac56f7822bac217bd1766/pikepdf-9.11.0-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:adb2910ca1ced9c8cd1952fec6788c1e87ac39cd1b7e0c51e466ee8a4b7974c6", size = 4685285, upload-time = "2025-09-12T07:14:01.52Z" }, - { url = "https://files.pythonhosted.org/packages/e9/10/49713c45c524ad97335bedbc5a2bdbc0295c81c023e6d503d2d8eeb5d12b/pikepdf-9.11.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3958ea903993f8d97714d460a74f63e1f01da2a67c8a24362b7d2c3f8ee49e41", size = 2387526, upload-time = "2025-09-12T07:14:03.141Z" }, - { url = "https://files.pythonhosted.org/packages/c7/51/0b03dd0b3048bb521a486dc60dfa407f583f9b70248b7cc27008044d1212/pikepdf-9.11.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f642be1eaf3ab6f2c8d9a5c8d90c83dbfcb556624e426574b8fb15578dad11cf", size = 2605773, upload-time = "2025-09-12T07:14:04.837Z" }, - { url = "https://files.pythonhosted.org/packages/b9/1b/d14309b905ab8b88a93f7364025135bfe9489b1169bb32a4c5ce66538266/pikepdf-9.11.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:3ec710fde0543a73221d1553671559b4cb1fe4f883bff6ff4094d23a7c6e0a65", size = 3582806, upload-time = "2025-09-12T07:14:06.582Z" }, - { url = "https://files.pythonhosted.org/packages/d6/72/1496333781ac5fb209b58914ca0fe39559e4cfa9491a9954bbbe13a0aec6/pikepdf-9.11.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ec2147018edf5a5c7ab981a5fb3b060e5af1366c4d6aa085f2dcf881fdb4ee7e", size = 3765976, upload-time = "2025-09-12T07:14:08.345Z" }, - { url = "https://files.pythonhosted.org/packages/fe/58/0da186afd9e50bf93fa71838378ecde096cff5a16c69b0de8d629ded127a/pikepdf-9.11.0-cp312-cp312-macosx_13_0_x86_64.whl", hash = "sha256:bd9ab8286316f758a107bfa7496c2fcada9f687467e4c68b3bfd6f3167a86d54", size = 5008605, upload-time = "2025-09-12T07:14:12.419Z" }, - { url = "https://files.pythonhosted.org/packages/c9/66/4de410fbfae6e1a02e9240a1831a7d7430a9bce67ad3af9456e5322a2513/pikepdf-9.11.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:a0cc52f3161b1245d810c16bb8e244a1b53bad9a47cd004ea1dd7b291a4f3db7", size = 4697137, upload-time = "2025-09-12T07:14:14.329Z" }, - { url = "https://files.pythonhosted.org/packages/e5/99/e7b5d3daccb9d6f19b06dfcfb77853d2ca26d3c84c1a9b9649d89e10bfe3/pikepdf-9.11.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c2a5a618e35e98fd9872bbbab4f183d7fd574a8e141c92cb01f7147323289413", size = 2395911, upload-time = "2025-09-12T07:14:16.024Z" }, - { url = "https://files.pythonhosted.org/packages/bc/af/11c28aace8696221613ed0799f547c58e64d92718ca62388ffae273e664d/pikepdf-9.11.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:aa87a2c31143037b78a397a0242879c11c0131e5660acbc20e2a6d6b193d48b0", size = 2630093, upload-time = "2025-09-12T07:14:17.904Z" }, - { url = "https://files.pythonhosted.org/packages/b4/9c/793cb2602f4903847437dbf47e30c126fded689e00a5737c8ccb6fda440a/pikepdf-9.11.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:70e008bc3da40b5a0b7007702291cd529a8917c6862e4d3db1eab986beae95ed", size = 3587720, upload-time = "2025-09-12T07:14:19.884Z" }, - { url = "https://files.pythonhosted.org/packages/c0/bb/6091c136fc7b605fb38d41777e8f887b830f22a95d2b3469b93c9763f2b3/pikepdf-9.11.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:56e3aca58aeeef52fca3dd9555eb735f2cc37166ff658a3837b5f73d59627b4f", size = 3789963, upload-time = "2025-09-12T07:14:22.282Z" }, - { url = "https://files.pythonhosted.org/packages/83/c7/e6808027895f312f711c528c0ff4acee30183b1ab11657283ba50ef08009/pikepdf-9.11.0-cp313-cp313-macosx_13_0_x86_64.whl", hash = "sha256:4216120eec527596b23ab280f4eb4f029a150ec5f1227a2988e87b91ca51cfd7", size = 5008670, upload-time = "2025-09-12T07:14:27.612Z" }, - { url = "https://files.pythonhosted.org/packages/1d/0b/9b8fcc33778cc01cdebd8b8f397cacc45b44d252758bd49efd5c19c28ddc/pikepdf-9.11.0-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:2a7b3ca12af17e165c10bc500dbacefefbe78108cf8bc1db860f70fda0c399b2", size = 4697038, upload-time = "2025-09-12T07:14:29.538Z" }, - { url = "https://files.pythonhosted.org/packages/82/62/32dc82a07d4a080ae21d937587b58cfa939ed55ac5c8828fe1faad96109d/pikepdf-9.11.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:dbb550492e82e79056793d191838676dd01af849a27e5da7905797dac3d88a0b", size = 2396860, upload-time = "2025-09-12T07:14:32.203Z" }, - { url = "https://files.pythonhosted.org/packages/5e/e9/ea6f34fb94d17c74e7eca0cd7bf22e281f005446280d77c46aa1f077e1bd/pikepdf-9.11.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f0b8280279d2229854df7f3c579d06926902d8b70649eb64ad9589f17e0bd352", size = 2632683, upload-time = "2025-09-12T07:14:34.29Z" }, - { url = "https://files.pythonhosted.org/packages/a5/b1/fcf8e3fec8be17b74768448da94cffe3a69b418ffde2f620d093fd693ddf/pikepdf-9.11.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:8569c338365c0f5187e250e7668477de222a784f1fa1d17574e99588d65defe0", size = 3588446, upload-time = "2025-09-12T07:14:36.625Z" }, - { url = "https://files.pythonhosted.org/packages/52/03/9ce3bd1a4f87789981b560003d5786163ccae34090b1c872a09cbd9a0168/pikepdf-9.11.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:bbc42f95714d09ad4c5345b010126d25639abe402643737d2b74c41167f932c0", size = 3790549, upload-time = "2025-09-12T07:14:38.54Z" }, - { url = "https://files.pythonhosted.org/packages/e6/43/adfd1daf833d646ada849c4f3f50ad6032e8e82112595cbeacebcc25d1d8/pikepdf-9.11.0-cp314-cp314-macosx_13_0_x86_64.whl", hash = "sha256:b366aefe9a30caababfbdc9f4647c8d0b7e92cfe34b6399399b78d4b96db9004", size = 5003377, upload-time = "2025-09-12T07:14:42.288Z" }, - { url = "https://files.pythonhosted.org/packages/c7/d9/5932cb5d884d360b253f0cb615f0f78f30c0a1d762c5a10760abf96a0811/pikepdf-9.11.0-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:3aed8fa4dabbf8ac1d9f5b8c15fa0881040f21ae58b4436c7f51f43c2375fc77", size = 4692845, upload-time = "2025-09-12T07:14:44.299Z" }, - { url = "https://files.pythonhosted.org/packages/f5/87/a674468806890d10f2f931641f06aa7dac8400594a96a7baf4d9f1d8810e/pikepdf-9.11.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a09b060e52449080a87720d6af00f551f879e55c6d8e8884526e5434843fc15e", size = 2401793, upload-time = "2025-09-12T07:14:46.202Z" }, - { url = "https://files.pythonhosted.org/packages/1c/99/7727cd512db321ee81d20f96a072933677ed58ece03b449fe003ff78ed92/pikepdf-9.11.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f42e5a69c32718b25da863ff3d408aa8bde677e19dbf8b05e6a12244f99c65f3", size = 2635642, upload-time = "2025-09-12T07:14:48.172Z" }, - { url = "https://files.pythonhosted.org/packages/0d/a0/0ebde63512eb79851eda33c2e798ffcc4956b34a0e425f8185c18f27eb0c/pikepdf-9.11.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:82f628fcfd98f27b0feac273aa2e088e47bc6e2b22d73c6251449b6bc901244a", size = 3593088, upload-time = "2025-09-12T07:14:50.499Z" }, - { url = "https://files.pythonhosted.org/packages/78/5b/da03983f19c7603cf3945d79df7e729070d10e6c1845b8f9d0ae70baac69/pikepdf-9.11.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:c84358dce401f5bbb0725d38567fbd218de4e1efedd139b9626a8f9e3dc2cd66", size = 3794158, upload-time = "2025-09-12T07:14:52.801Z" }, + { url = "https://files.pythonhosted.org/packages/48/fa/ab2b88c097b4542663065631f0a1f693ed2a6e585cf92d6226267d0f66ad/pikepdf-10.0.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:2698975488753fd0d8d06bf2d15c809f2b0be7f34eb75f068161d7313f331b3b", size = 4673132, upload-time = "2025-11-10T18:08:54.191Z" }, + { url = "https://files.pythonhosted.org/packages/a7/04/20985de6520c5d7018fc7d2fd9d2804d9348d39df3c08d11f115c522fcde/pikepdf-10.0.2-cp310-cp310-macosx_15_0_x86_64.whl", hash = "sha256:e018fae8df61b2d5aa376ff381178f9d6930ee68d24b26a9a4409f8ff7c7cb1e", size = 4972194, upload-time = "2025-11-10T18:08:58.588Z" }, + { url = "https://files.pythonhosted.org/packages/97/8b/b32af8b69f475a736904d34e83e136bae0ca7fe221090cd36ee136112efc/pikepdf-10.0.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:af565ad6ff5d96611a657c1e12e1429749f36271e7e368f82ba3a8a4635ac3dd", size = 2379539, upload-time = "2025-11-10T18:09:00.278Z" }, + { url = "https://files.pythonhosted.org/packages/b0/ca/79f9886ad5322b603adc823b2663bcfb51a2729b9feb14dcb270e94528dd/pikepdf-10.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0d150903852630b89d67832e56d7fb0b2bfd0e228f269d498de5d28b53078db9", size = 2596832, upload-time = "2025-11-10T18:09:01.889Z" }, + { url = "https://files.pythonhosted.org/packages/09/52/2793b5dd95611614b96cde0f78736910506abdab87a7038d126093c8f0ed/pikepdf-10.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:99c9cc66689120eba0aec858256ab4c3661e792a1d2a6c07575090c9a54d5bf3", size = 3574220, upload-time = "2025-11-10T18:09:04.25Z" }, + { url = "https://files.pythonhosted.org/packages/82/be/b47271b5e13bb0c678118a132066c29a90bfd6788224e1a73fecf2eb548d/pikepdf-10.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b75a29c2adeb8ae0277c76d232f75517c2cbd23f43212f8daac267d25f1cc656", size = 3757893, upload-time = "2025-11-10T18:09:05.962Z" }, + { url = "https://files.pythonhosted.org/packages/b4/bc/baff13dff8422c13e37bcb4b53bd55764cce88c7f6d8e7ff43f2dcb4f4ee/pikepdf-10.0.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:92a801d90cf7cab88c750d964de30cfe06dc04449cb51c38a863af75caa8b8cb", size = 4675949, upload-time = "2025-11-10T18:09:09.827Z" }, + { url = "https://files.pythonhosted.org/packages/d5/0d/158efe9a1a160b244c071e1893f154dfd905148c545d5f88d216b7f32f89/pikepdf-10.0.2-cp311-cp311-macosx_15_0_x86_64.whl", hash = "sha256:2f2c58f5b39e3e87d34d3a596922210f63e730a78c2aa6201667881b2c41a878", size = 4974326, upload-time = "2025-11-10T18:09:11.848Z" }, + { url = "https://files.pythonhosted.org/packages/48/0e/b2b6007d500dd6b76b6cffc8ec9f869395e55e19521a2f5bf988043c8302/pikepdf-10.0.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:de987c50205a316a31bc46e5e6a32592244895cb9a95186ba5bcd398272e7d69", size = 2387154, upload-time = "2025-11-10T18:09:15.787Z" }, + { url = "https://files.pythonhosted.org/packages/ef/e5/094989c2db7d778fe47343d0a4dff610228e10eae2426be8ed6feb0f43b3/pikepdf-10.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0d3736dfeba9eaf0aa710317d4dbdaee32d55be18d36a1b29fab2e4361cb7ae0", size = 2606870, upload-time = "2025-11-10T18:09:18.048Z" }, + { url = "https://files.pythonhosted.org/packages/dc/6d/5b6561a546e4036f6fa203cd8c5afe0874fe272b2b1c82b2350519ac9e8c/pikepdf-10.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d3b1fd46081dbc0302ef058f0bdadefe8f6db1de00b332759ad7cd32efa2705", size = 3583199, upload-time = "2025-11-10T18:09:19.781Z" }, + { url = "https://files.pythonhosted.org/packages/bc/b7/9794e2127eedbc01db1232bea4bfa86e38513fa3c78cba4f9d2837c6f230/pikepdf-10.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7ca982269f3fe084a9267d323c377f0afa6de33b3fd2dca4df67289001fce042", size = 3768564, upload-time = "2025-11-10T18:09:22.693Z" }, + { url = "https://files.pythonhosted.org/packages/42/03/ef096d5bccf70606fcd40ef3519e048028144ebdd5735092398d9cf0ee3f/pikepdf-10.0.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:0a5e798d6b0759bae1e30b8b05853b5c8d4016129db658f3a3e3320781ef2376", size = 4687898, upload-time = "2025-11-10T18:09:26.145Z" }, + { url = "https://files.pythonhosted.org/packages/40/27/cd69b14359772b3a447aa6687da3436fcdf16664be06ca88aef984453217/pikepdf-10.0.2-cp312-cp312-macosx_15_0_x86_64.whl", hash = "sha256:8d8ecc258f90cd1287f8527dd3b94aa178be7c0e04f313ae4182f21c24fd328d", size = 4985422, upload-time = "2025-11-10T18:09:27.955Z" }, + { url = "https://files.pythonhosted.org/packages/f9/cb/442ff1273ac155d1cd0f81fb7acf9848f8c4b595616ed8d2d846b9327e31/pikepdf-10.0.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9ca4d5d1ca3f7af568e62cadf1c64238490b6503a512894c99e48042e3eb3648", size = 2395555, upload-time = "2025-11-10T18:09:30.129Z" }, + { url = "https://files.pythonhosted.org/packages/e5/d0/9d4ed596e5419dd4bc8c162f0337398dc1ddc94e2d7bf6f3d0fb6eef561b/pikepdf-10.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fa22c5496e14fa3e89b94117fe56494b895cd02e53842f60331ac4bc078f04c7", size = 2631976, upload-time = "2025-11-10T18:09:32.214Z" }, + { url = "https://files.pythonhosted.org/packages/86/59/205f83746288590f22d1ff8b43fc93b193ddeca26261c61b5621d03048a1/pikepdf-10.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:df502e0c6d0731bd3f98523e5d501d4a21b36844f0061ef25f2500b18766fb51", size = 3588060, upload-time = "2025-11-10T18:09:34.252Z" }, + { url = "https://files.pythonhosted.org/packages/b2/54/4e9c8b53f22a4e527cf1087c5b26e127aa028c51d81cf53b10f34c34db8d/pikepdf-10.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:98464b4d8f0340ab38575cc41acf9061e2639c90e3a25c491c3ef3d01b92899f", size = 3791776, upload-time = "2025-11-10T18:09:36.055Z" }, + { url = "https://files.pythonhosted.org/packages/b3/f1/eabc9e780f9d0fe0316ce0185a1064d28b18c219fd8d1b0609205c18ac39/pikepdf-10.0.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:f06c8dbf1f6cab87815b7ed0e4b1359da8665c4bb51a9fbdd71824c0b1bbb28c", size = 4687891, upload-time = "2025-11-10T18:09:40.003Z" }, + { url = "https://files.pythonhosted.org/packages/e7/3a/ce1cf39d9eac09885efa69cc6bbe537ec2b7a24beded2fd0d9de779513f4/pikepdf-10.0.2-cp313-cp313-macosx_15_0_x86_64.whl", hash = "sha256:c3d421c6d4ef1aa394d30c683bb18c436817467c4db8279a4ff0f9d0a96aa323", size = 4985564, upload-time = "2025-11-10T18:09:42.624Z" }, + { url = "https://files.pythonhosted.org/packages/2f/f2/91664c4a7bda3fd3240e99a8ea602bb674ae88eea5dd798fa54c763da7e5/pikepdf-10.0.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0487fa6f64c26baa3f7131a917c37bb1183364a213678c155184944ca711881d", size = 2396504, upload-time = "2025-11-10T18:09:44.622Z" }, + { url = "https://files.pythonhosted.org/packages/12/8f/84717f30989f81ba94188a0185791039b683ed4ab43003ab5114aa07f154/pikepdf-10.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:55378c0c1d7c32c32466809fc4c7a08efd2d6a0f75e22b25e3791ab33001382b", size = 2635392, upload-time = "2025-11-10T18:09:46.301Z" }, + { url = "https://files.pythonhosted.org/packages/0c/1c/960ff2fe0c11ab936db04202da6be136909757ecf131690b58d2aeef4d67/pikepdf-10.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cb5d7278cf9655eedde443f737ffab57eeaf81b5585094644759c368d28ac1bd", size = 3588629, upload-time = "2025-11-10T18:09:48.042Z" }, + { url = "https://files.pythonhosted.org/packages/04/56/9e6d87d20c520afb8afe28cddf37ddaa4a70aaf9aec2e25d53522a91d9c4/pikepdf-10.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8e460726e0753b0196a241f11f80c90a30fcaf3e7bc7d908cf85594890cb981c", size = 3792852, upload-time = "2025-11-10T18:09:50.213Z" }, + { url = "https://files.pythonhosted.org/packages/f2/92/ddc07c58bb0e99f6c7ed5cdec63ed305bf22d29f875fb7a5b626f3eca177/pikepdf-10.0.2-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:821592290f33943d0dbde294a56db2b777b7edf519dabbe77d1a8e99a96f96ea", size = 4683719, upload-time = "2025-11-10T18:09:53.991Z" }, + { url = "https://files.pythonhosted.org/packages/9b/05/f43a0dde38720c960910ea7c2916a608d6dcb42d4cdf00b6a202704a0e35/pikepdf-10.0.2-cp314-cp314-macosx_15_0_x86_64.whl", hash = "sha256:64f46f9db208cd4166b73da31e201258e47cb3c3645d9856782e9fa041503268", size = 4986050, upload-time = "2025-11-10T18:09:56.36Z" }, + { url = "https://files.pythonhosted.org/packages/2a/7d/2899179c383d6dd53c7f74a772f6df16f4d6dca84584f777ebf1e1fb3f34/pikepdf-10.0.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:434ae183af796288d918be2825f950947a9b329850008bb97743f3297529a537", size = 2402087, upload-time = "2025-11-10T18:09:58.877Z" }, + { url = "https://files.pythonhosted.org/packages/a8/9f/c6989364ffa8b44b2c581316a3e59dac4497591336e941171e80e27bf664/pikepdf-10.0.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7e23617b12fceee49a5b17b0ad7921ef50eaf4e1d23babec893b8dbc498bb3f2", size = 2637508, upload-time = "2025-11-10T18:10:00.684Z" }, + { url = "https://files.pythonhosted.org/packages/96/9c/72846bf3454637450cca8cc9620dbb6d7df035ed3ff41b656c4a516e5495/pikepdf-10.0.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:09da390be9d8558b77372a016498fc3d8edc9e5fd3928557f6012cb29f9114fb", size = 3595197, upload-time = "2025-11-10T18:10:02.688Z" }, + { url = "https://files.pythonhosted.org/packages/77/2c/b8221889158a748e3e74edbba9590fcb6516605fa169cb786b3d81f71129/pikepdf-10.0.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:9165ef885b657a0602623a996ea230a450e7774b48e9d7bf463f46b0dbc738df", size = 3796398, upload-time = "2025-11-10T18:10:04.826Z" }, ] [[package]] @@ -2625,7 +2625,7 @@ wheels = [ [[package]] name = "pre-commit" -version = "4.3.0" +version = "4.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cfgv", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, @@ -2634,9 +2634,9 @@ dependencies = [ { name = "pyyaml", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "virtualenv", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ff/29/7cf5bbc236333876e4b41f56e06857a87937ce4bf91e117a6991a2dbb02a/pre_commit-4.3.0.tar.gz", hash = "sha256:499fe450cc9d42e9d58e606262795ecb64dd05438943c62b66f6a8673da30b16", size = 193792, upload-time = "2025-08-09T18:56:14.651Z" } +sdist = { url = "https://files.pythonhosted.org/packages/a6/49/7845c2d7bf6474efd8e27905b51b11e6ce411708c91e829b93f324de9929/pre_commit-4.4.0.tar.gz", hash = "sha256:f0233ebab440e9f17cabbb558706eb173d19ace965c68cdce2c081042b4fab15", size = 197501, upload-time = "2025-11-08T21:12:11.607Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/5b/a5/987a405322d78a73b66e39e4a90e4ef156fd7141bf71df987e50717c321b/pre_commit-4.3.0-py2.py3-none-any.whl", hash = "sha256:2b0747ad7e6e967169136edffee14c16e148a778a54e4f967921aa1ebf2308d8", size = 220965, upload-time = "2025-08-09T18:56:13.192Z" }, + { url = "https://files.pythonhosted.org/packages/27/11/574fe7d13acf30bfd0a8dd7fa1647040f2b8064f13f43e8c963b1e65093b/pre_commit-4.4.0-py2.py3-none-any.whl", hash = "sha256:b35ea52957cbf83dcc5d8ee636cbead8624e3a15fbfa61a370e42158ac8a5813", size = 226049, upload-time = "2025-11-08T21:12:10.228Z" }, ] [[package]] @@ -2731,14 +2731,14 @@ wheels = [ [[package]] name = "psycopg-pool" -version = "3.2.6" +version = "3.2.7" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/cf/13/1e7850bb2c69a63267c3dbf37387d3f71a00fd0e2fa55c5db14d64ba1af4/psycopg_pool-3.2.6.tar.gz", hash = "sha256:0f92a7817719517212fbfe2fd58b8c35c1850cdd2a80d36b581ba2085d9148e5", size = 29770, upload-time = "2025-02-26T12:03:47.129Z" } +sdist = { url = "https://files.pythonhosted.org/packages/9d/8f/3ec52b17087c2ed5fa32b64fd4814dde964c9aa4bd49d0d30fc24725ca6d/psycopg_pool-3.2.7.tar.gz", hash = "sha256:a77d531bfca238e49e5fb5832d65b98e69f2c62bfda3d2d4d833696bdc9ca54b", size = 29765, upload-time = "2025-10-26T00:46:10.379Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/47/fd/4feb52a55c1a4bd748f2acaed1903ab54a723c47f6d0242780f4d97104d4/psycopg_pool-3.2.6-py3-none-any.whl", hash = "sha256:5887318a9f6af906d041a0b1dc1c60f8f0dda8340c2572b74e10907b51ed5da7", size = 38252, upload-time = "2025-02-26T12:03:45.073Z" }, + { url = "https://files.pythonhosted.org/packages/e7/59/74e752f605c6f0e351d4cf1c54fb9a1616dc800db4572b95bbfbb1a6225f/psycopg_pool-3.2.7-py3-none-any.whl", hash = "sha256:4b47bb59d887ef5da522eb63746b9f70e2faf967d34aac4f56ffc65e9606728f", size = 38232, upload-time = "2025-10-26T00:46:00.496Z" }, ] [[package]] @@ -2954,11 +2954,11 @@ wheels = [ [[package]] name = "python-dotenv" -version = "1.1.1" +version = "1.2.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f6/b0/4bc07ccd3572a2f9df7e6782f52b0c6c90dcbb803ac4a167702d7d0dfe1e/python_dotenv-1.1.1.tar.gz", hash = "sha256:a8a6399716257f45be6a007360200409fce5cda2661e3dec71d23dc15f6189ab", size = 41978, upload-time = "2025-06-24T04:21:07.341Z" } +sdist = { url = "https://files.pythonhosted.org/packages/f0/26/19cadc79a718c5edbec86fd4919a6b6d3f681039a2f6d66d14be94e75fb9/python_dotenv-1.2.1.tar.gz", hash = "sha256:42667e897e16ab0d66954af0e60a9caa94f0fd4ecf3aaf6d2d260eec1aa36ad6", size = 44221, upload-time = "2025-10-26T15:12:10.434Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/5f/ed/539768cf28c661b5b068d66d96a2f155c4971a5d55684a514c1a0e0dec2f/python_dotenv-1.1.1-py3-none-any.whl", hash = "sha256:31f23644fe2602f88ff55e1f5c79ba497e01224ee7737937930c448e4d0e24dc", size = 20556, upload-time = "2025-06-24T04:21:06.073Z" }, + { url = "https://files.pythonhosted.org/packages/14/1b/a298b06749107c305e1fe0f814c6c74aea7b2f1e10989cb30f544a1b3253/python_dotenv-1.2.1-py3-none-any.whl", hash = "sha256:b81ee9561e9ca4004139c6cbba3a238c32b03e4894671e181b671e8cb8425d61", size = 21230, upload-time = "2025-10-26T15:12:09.109Z" }, ] [[package]] @@ -3173,78 +3173,70 @@ wheels = [ [[package]] name = "rapidfuzz" -version = "3.14.1" +version = "3.14.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ed/fc/a98b616db9a42dcdda7c78c76bdfdf6fe290ac4c5ffbb186f73ec981ad5b/rapidfuzz-3.14.1.tar.gz", hash = "sha256:b02850e7f7152bd1edff27e9d584505b84968cacedee7a734ec4050c655a803c", size = 57869570, upload-time = "2025-09-08T21:08:15.922Z" } +sdist = { url = "https://files.pythonhosted.org/packages/d3/28/9d808fe62375b9aab5ba92fa9b29371297b067c2790b2d7cda648b1e2f8d/rapidfuzz-3.14.3.tar.gz", hash = "sha256:2491937177868bc4b1e469087601d53f925e8d270ccc21e07404b4b5814b7b5f", size = 57863900, upload-time = "2025-11-01T11:54:52.321Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/6a/b9/4e35178f405a1a95abd37cce4dc09d4a5bbc5e098687680b5ba796d3115b/rapidfuzz-3.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:489440e4b5eea0d150a31076eb183bed0ec84f934df206c72ae4fc3424501758", size = 1939645, upload-time = "2025-09-08T21:05:16.569Z" }, - { url = "https://files.pythonhosted.org/packages/51/af/fd7b8662a3b6952559af322dcf1c9d4eb5ec6be2697c30ae8ed3c44876ca/rapidfuzz-3.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eff22cc938c3f74d194df03790a6c3325d213b28cf65cdefd6fdeae759b745d5", size = 1393620, upload-time = "2025-09-08T21:05:18.598Z" }, - { url = "https://files.pythonhosted.org/packages/c5/5b/5715445e29c1c6ba364b3d27278da3fdffb18d9147982e977c6638dcecbf/rapidfuzz-3.14.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e0307f018b16feaa36074bcec2496f6f120af151a098910296e72e233232a62f", size = 1387721, upload-time = "2025-09-08T21:05:20.408Z" }, - { url = "https://files.pythonhosted.org/packages/19/49/83a14a6a90982b090257c4b2e96b9b9c423a89012b8504d5a14d92a4f8c2/rapidfuzz-3.14.1-cp310-cp310-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:bc133652da143aca1ab72de235446432888b2b7f44ee332d006f8207967ecb8a", size = 1694545, upload-time = "2025-09-08T21:05:22.137Z" }, - { url = "https://files.pythonhosted.org/packages/99/f7/94618fcaaac8c04abf364f405c6811a02bc9edef209f276dc513a9a50f7c/rapidfuzz-3.14.1-cp310-cp310-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e9e71b3fe7e4a1590843389a90fe2a8684649fc74b9b7446e17ee504ddddb7de", size = 2237075, upload-time = "2025-09-08T21:05:23.637Z" }, - { url = "https://files.pythonhosted.org/packages/58/f6/a5ee2db25f36b0e5e06502fb77449b7718cd9f92ad36d598e669ba91db7b/rapidfuzz-3.14.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6c51519eb2f20b52eba6fc7d857ae94acc6c2a1f5d0f2d794b9d4977cdc29dd7", size = 3168778, upload-time = "2025-09-08T21:05:25.508Z" }, - { url = "https://files.pythonhosted.org/packages/0f/e8/c9620e358805c099e6755b7d2827b1e711b5e61914d6112ce2faa2c2af79/rapidfuzz-3.14.1-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:fe87d94602624f8f25fff9a0a7b47f33756c4d9fc32b6d3308bb142aa483b8a4", size = 1223827, upload-time = "2025-09-08T21:05:27.299Z" }, - { url = "https://files.pythonhosted.org/packages/84/08/24916c3c3d55d6236474c9da0a595641d0013d3604de0625e8a8974371c3/rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2d665380503a575dda52eb712ea521f789e8f8fd629c7a8e6c0f8ff480febc78", size = 2408366, upload-time = "2025-09-08T21:05:28.808Z" }, - { url = "https://files.pythonhosted.org/packages/40/d4/4152e8821b5c548443a6c46568fccef13de5818a5ab370d553ea3d5955b3/rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c0f0dd022b8a7cbf3c891f6de96a80ab6a426f1069a085327816cea749e096c2", size = 2530148, upload-time = "2025-09-08T21:05:30.782Z" }, - { url = "https://files.pythonhosted.org/packages/bd/af/6587c6d590abe232c530ad43fbfbcaec899bff7204e237f1fd21e2e44b81/rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:bf1ba22d36858b265c95cd774ba7fe8991e80a99cd86fe4f388605b01aee81a3", size = 2810628, upload-time = "2025-09-08T21:05:32.844Z" }, - { url = "https://files.pythonhosted.org/packages/d7/90/a99e6cfd90feb9d770654f1f39321099bbbf7f85d2832f2ef48d3f4ebc5f/rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:ca1c1494ac9f9386d37f0e50cbaf4d07d184903aed7691549df1b37e9616edc9", size = 3314406, upload-time = "2025-09-08T21:05:34.585Z" }, - { url = "https://files.pythonhosted.org/packages/5f/b3/eba5a6c217200fd1d3615997930a9e5db6a74e3002b7867b54545f9b5cbb/rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9e4b12e921b0fa90d7c2248742a536f21eae5562174090b83edd0b4ab8b557d7", size = 4280030, upload-time = "2025-09-08T21:05:36.646Z" }, - { url = "https://files.pythonhosted.org/packages/5c/c7/c3c860d512606225c11c8ee455b4dc0b0214dbcfac90a2c22dddf55320f3/rapidfuzz-3.14.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4d976701060886a791c8a9260b1d4139d14c1f1e9a6ab6116b45a1acf3baff67", size = 1938398, upload-time = "2025-09-08T21:05:44.031Z" }, - { url = "https://files.pythonhosted.org/packages/c0/f3/67f5c5cd4d728993c48c1dcb5da54338d77c03c34b4903cc7839a3b89faf/rapidfuzz-3.14.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5e6ba7e6eb2ab03870dcab441d707513db0b4264c12fba7b703e90e8b4296df2", size = 1392819, upload-time = "2025-09-08T21:05:45.549Z" }, - { url = "https://files.pythonhosted.org/packages/d5/06/400d44842f4603ce1bebeaeabe776f510e329e7dbf6c71b6f2805e377889/rapidfuzz-3.14.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1e532bf46de5fd3a1efde73a16a4d231d011bce401c72abe3c6ecf9de681003f", size = 1391798, upload-time = "2025-09-08T21:05:47.044Z" }, - { url = "https://files.pythonhosted.org/packages/90/97/a6944955713b47d88e8ca4305ca7484940d808c4e6c4e28b6fa0fcbff97e/rapidfuzz-3.14.1-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f9b6a6fb8ed9b951e5f3b82c1ce6b1665308ec1a0da87f799b16e24fc59e4662", size = 1699136, upload-time = "2025-09-08T21:05:48.919Z" }, - { url = "https://files.pythonhosted.org/packages/a8/1e/f311a5c95ddf922db6dd8666efeceb9ac69e1319ed098ac80068a4041732/rapidfuzz-3.14.1-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5b6ac3f9810949caef0e63380b11a3c32a92f26bacb9ced5e32c33560fcdf8d1", size = 2236238, upload-time = "2025-09-08T21:05:50.844Z" }, - { url = "https://files.pythonhosted.org/packages/85/27/e14e9830255db8a99200f7111b158ddef04372cf6332a415d053fe57cc9c/rapidfuzz-3.14.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e52e4c34fd567f77513e886b66029c1ae02f094380d10eba18ba1c68a46d8b90", size = 3183685, upload-time = "2025-09-08T21:05:52.362Z" }, - { url = "https://files.pythonhosted.org/packages/61/b2/42850c9616ddd2887904e5dd5377912cbabe2776fdc9fd4b25e6e12fba32/rapidfuzz-3.14.1-cp311-cp311-manylinux_2_31_armv7l.whl", hash = "sha256:2ef72e41b1a110149f25b14637f1cedea6df192462120bea3433980fe9d8ac05", size = 1231523, upload-time = "2025-09-08T21:05:53.927Z" }, - { url = "https://files.pythonhosted.org/packages/de/b5/6b90ed7127a1732efef39db46dd0afc911f979f215b371c325a2eca9cb15/rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:fb654a35b373d712a6b0aa2a496b2b5cdd9d32410cfbaecc402d7424a90ba72a", size = 2415209, upload-time = "2025-09-08T21:05:55.422Z" }, - { url = "https://files.pythonhosted.org/packages/70/60/af51c50d238c82f2179edc4b9f799cc5a50c2c0ebebdcfaa97ded7d02978/rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:2b2c12e5b9eb8fe9a51b92fe69e9ca362c0970e960268188a6d295e1dec91e6d", size = 2532957, upload-time = "2025-09-08T21:05:57.048Z" }, - { url = "https://files.pythonhosted.org/packages/50/92/29811d2ba7c984251a342c4f9ccc7cc4aa09d43d800af71510cd51c36453/rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:4f069dec5c450bd987481e752f0a9979e8fdf8e21e5307f5058f5c4bb162fa56", size = 2815720, upload-time = "2025-09-08T21:05:58.618Z" }, - { url = "https://files.pythonhosted.org/packages/78/69/cedcdee16a49e49d4985eab73b59447f211736c5953a58f1b91b6c53a73f/rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4d0d9163725b7ad37a8c46988cae9ebab255984db95ad01bf1987ceb9e3058dd", size = 3323704, upload-time = "2025-09-08T21:06:00.576Z" }, - { url = "https://files.pythonhosted.org/packages/76/3e/5a3f9a5540f18e0126e36f86ecf600145344acb202d94b63ee45211a18b8/rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:db656884b20b213d846f6bc990c053d1f4a60e6d4357f7211775b02092784ca1", size = 4287341, upload-time = "2025-09-08T21:06:02.301Z" }, - { url = "https://files.pythonhosted.org/packages/df/77/2f4887c9b786f203e50b816c1cde71f96642f194e6fa752acfa042cf53fd/rapidfuzz-3.14.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:809515194f628004aac1b1b280c3734c5ea0ccbd45938c9c9656a23ae8b8f553", size = 1932216, upload-time = "2025-09-08T21:06:09.342Z" }, - { url = "https://files.pythonhosted.org/packages/de/bd/b5e445d156cb1c2a87d36d8da53daf4d2a1d1729b4851660017898b49aa0/rapidfuzz-3.14.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0afcf2d6cb633d0d4260d8df6a40de2d9c93e9546e2c6b317ab03f89aa120ad7", size = 1393414, upload-time = "2025-09-08T21:06:10.959Z" }, - { url = "https://files.pythonhosted.org/packages/de/bd/98d065dd0a4479a635df855616980eaae1a1a07a876db9400d421b5b6371/rapidfuzz-3.14.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5c1c3d07d53dcafee10599da8988d2b1f39df236aee501ecbd617bd883454fcd", size = 1377194, upload-time = "2025-09-08T21:06:12.471Z" }, - { url = "https://files.pythonhosted.org/packages/d3/8a/1265547b771128b686f3c431377ff1db2fa073397ed082a25998a7b06d4e/rapidfuzz-3.14.1-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6e9ee3e1eb0a027717ee72fe34dc9ac5b3e58119f1bd8dd15bc19ed54ae3e62b", size = 1669573, upload-time = "2025-09-08T21:06:14.016Z" }, - { url = "https://files.pythonhosted.org/packages/a8/57/e73755c52fb451f2054196404ccc468577f8da023b3a48c80bce29ee5d4a/rapidfuzz-3.14.1-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:70c845b64a033a20c44ed26bc890eeb851215148cc3e696499f5f65529afb6cb", size = 2217833, upload-time = "2025-09-08T21:06:15.666Z" }, - { url = "https://files.pythonhosted.org/packages/20/14/7399c18c460e72d1b754e80dafc9f65cb42a46cc8f29cd57d11c0c4acc94/rapidfuzz-3.14.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:26db0e815213d04234298dea0d884d92b9cb8d4ba954cab7cf67a35853128a33", size = 3159012, upload-time = "2025-09-08T21:06:17.631Z" }, - { url = "https://files.pythonhosted.org/packages/f8/5e/24f0226ddb5440cabd88605d2491f99ae3748a6b27b0bc9703772892ced7/rapidfuzz-3.14.1-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:6ad3395a416f8b126ff11c788531f157c7debeb626f9d897c153ff8980da10fb", size = 1227032, upload-time = "2025-09-08T21:06:21.06Z" }, - { url = "https://files.pythonhosted.org/packages/40/43/1d54a4ad1a5fac2394d5f28a3108e2bf73c26f4f23663535e3139cfede9b/rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:61c5b9ab6f730e6478aa2def566223712d121c6f69a94c7cc002044799442afd", size = 2395054, upload-time = "2025-09-08T21:06:23.482Z" }, - { url = "https://files.pythonhosted.org/packages/0c/71/e9864cd5b0f086c4a03791f5dfe0155a1b132f789fe19b0c76fbabd20513/rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:13e0ea3d0c533969158727d1bb7a08c2cc9a816ab83f8f0dcfde7e38938ce3e6", size = 2524741, upload-time = "2025-09-08T21:06:26.825Z" }, - { url = "https://files.pythonhosted.org/packages/b2/0c/53f88286b912faf4a3b2619a60df4f4a67bd0edcf5970d7b0c1143501f0c/rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:6325ca435b99f4001aac919ab8922ac464999b100173317defb83eae34e82139", size = 2785311, upload-time = "2025-09-08T21:06:29.471Z" }, - { url = "https://files.pythonhosted.org/packages/53/9a/229c26dc4f91bad323f07304ee5ccbc28f0d21c76047a1e4f813187d0bad/rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:07a9fad3247e68798424bdc116c1094e88ecfabc17b29edf42a777520347648e", size = 3303630, upload-time = "2025-09-08T21:06:31.094Z" }, - { url = "https://files.pythonhosted.org/packages/05/de/20e330d6d58cbf83da914accd9e303048b7abae2f198886f65a344b69695/rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f8ff5dbe78db0a10c1f916368e21d328935896240f71f721e073cf6c4c8cdedd", size = 4262364, upload-time = "2025-09-08T21:06:32.877Z" }, - { url = "https://files.pythonhosted.org/packages/0d/f2/0024cc8eead108c4c29337abe133d72ddf3406ce9bbfbcfc110414a7ea07/rapidfuzz-3.14.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8d69f470d63ee824132ecd80b1974e1d15dd9df5193916901d7860cef081a260", size = 1926515, upload-time = "2025-09-08T21:06:39.834Z" }, - { url = "https://files.pythonhosted.org/packages/12/ae/6cb211f8930bea20fa989b23f31ee7f92940caaf24e3e510d242a1b28de4/rapidfuzz-3.14.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6f571d20152fc4833b7b5e781b36d5e4f31f3b5a596a3d53cf66a1bd4436b4f4", size = 1388431, upload-time = "2025-09-08T21:06:41.73Z" }, - { url = "https://files.pythonhosted.org/packages/39/88/bfec24da0607c39e5841ced5594ea1b907d20f83adf0e3ee87fa454a425b/rapidfuzz-3.14.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:61d77e09b2b6bc38228f53b9ea7972a00722a14a6048be9a3672fb5cb08bad3a", size = 1375664, upload-time = "2025-09-08T21:06:43.737Z" }, - { url = "https://files.pythonhosted.org/packages/f4/43/9f282ba539e404bdd7052c7371d3aaaa1a9417979d2a1d8332670c7f385a/rapidfuzz-3.14.1-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8b41d95ef86a6295d353dc3bb6c80550665ba2c3bef3a9feab46074d12a9af8f", size = 1668113, upload-time = "2025-09-08T21:06:45.758Z" }, - { url = "https://files.pythonhosted.org/packages/7f/2f/0b3153053b1acca90969eb0867922ac8515b1a8a48706a3215c2db60e87c/rapidfuzz-3.14.1-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0591df2e856ad583644b40a2b99fb522f93543c65e64b771241dda6d1cfdc96b", size = 2212875, upload-time = "2025-09-08T21:06:47.447Z" }, - { url = "https://files.pythonhosted.org/packages/f8/9b/623001dddc518afaa08ed1fbbfc4005c8692b7a32b0f08b20c506f17a770/rapidfuzz-3.14.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f277801f55b2f3923ef2de51ab94689a0671a4524bf7b611de979f308a54cd6f", size = 3161181, upload-time = "2025-09-08T21:06:49.179Z" }, - { url = "https://files.pythonhosted.org/packages/ce/b7/d8404ed5ad56eb74463e5ebf0a14f0019d7eb0e65e0323f709fe72e0884c/rapidfuzz-3.14.1-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:893fdfd4f66ebb67f33da89eb1bd1674b7b30442fdee84db87f6cb9074bf0ce9", size = 1225495, upload-time = "2025-09-08T21:06:51.056Z" }, - { url = "https://files.pythonhosted.org/packages/2c/6c/b96af62bc7615d821e3f6b47563c265fd7379d7236dfbc1cbbcce8beb1d2/rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:fe2651258c1f1afa9b66f44bf82f639d5f83034f9804877a1bbbae2120539ad1", size = 2396294, upload-time = "2025-09-08T21:06:53.063Z" }, - { url = "https://files.pythonhosted.org/packages/7f/b7/c60c9d22a7debed8b8b751f506a4cece5c22c0b05e47a819d6b47bc8c14e/rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:ace21f7a78519d8e889b1240489cd021c5355c496cb151b479b741a4c27f0a25", size = 2529629, upload-time = "2025-09-08T21:06:55.188Z" }, - { url = "https://files.pythonhosted.org/packages/25/94/a9ec7ccb28381f14de696ffd51c321974762f137679df986f5375d35264f/rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:cb5acf24590bc5e57027283b015950d713f9e4d155fda5cfa71adef3b3a84502", size = 2782960, upload-time = "2025-09-08T21:06:57.339Z" }, - { url = "https://files.pythonhosted.org/packages/68/80/04e5276d223060eca45250dbf79ea39940c0be8b3083661d58d57572c2c5/rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:67ea46fa8cc78174bad09d66b9a4b98d3068e85de677e3c71ed931a1de28171f", size = 3298427, upload-time = "2025-09-08T21:06:59.319Z" }, - { url = "https://files.pythonhosted.org/packages/4a/63/24759b2a751562630b244e68ccaaf7a7525c720588fcc77c964146355aee/rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:44e741d785de57d1a7bae03599c1cbc7335d0b060a35e60c44c382566e22782e", size = 4267736, upload-time = "2025-09-08T21:07:01.31Z" }, - { url = "https://files.pythonhosted.org/packages/e2/cb/1ad9a76d974d153783f8e0be8dbe60ec46488fac6e519db804e299e0da06/rapidfuzz-3.14.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d937dbeda71c921ef6537c6d41a84f1b8112f107589c9977059de57a1d726dd6", size = 1945173, upload-time = "2025-09-08T21:07:08.893Z" }, - { url = "https://files.pythonhosted.org/packages/d9/61/959ed7460941d8a81cbf6552b9c45564778a36cf5e5aa872558b30fc02b2/rapidfuzz-3.14.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7a2d80cc1a4fcc7e259ed4f505e70b36433a63fa251f1bb69ff279fe376c5efd", size = 1413949, upload-time = "2025-09-08T21:07:11.033Z" }, - { url = "https://files.pythonhosted.org/packages/d6/36/53debca45fbe693bd6181fb05b6a2fd561c87669edb82ec0d7c1961a43f0/rapidfuzz-3.14.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:e84d9a844dc2e4d5c4cabd14c096374ead006583304333c14a6fbde51f612a44", size = 1926336, upload-time = "2025-09-08T21:07:18.809Z" }, - { url = "https://files.pythonhosted.org/packages/ae/32/b874f48609665fcfeaf16cbaeb2bbc210deef2b88e996c51cfc36c3eb7c3/rapidfuzz-3.14.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:40301b93b99350edcd02dbb22e37ca5f2a75d0db822e9b3c522da451a93d6f27", size = 1389653, upload-time = "2025-09-08T21:07:20.667Z" }, - { url = "https://files.pythonhosted.org/packages/97/25/f6c5a1ff4ec11edadacb270e70b8415f51fa2f0d5730c2c552b81651fbe3/rapidfuzz-3.14.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fedd5097a44808dddf341466866e5c57a18a19a336565b4ff50aa8f09eb528f6", size = 1380911, upload-time = "2025-09-08T21:07:22.584Z" }, - { url = "https://files.pythonhosted.org/packages/d8/f3/d322202ef8fab463759b51ebfaa33228100510c82e6153bd7a922e150270/rapidfuzz-3.14.1-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2e3e61c9e80d8c26709d8aa5c51fdd25139c81a4ab463895f8a567f8347b0548", size = 1673515, upload-time = "2025-09-08T21:07:24.417Z" }, - { url = "https://files.pythonhosted.org/packages/8d/b9/6b2a97f4c6be96cac3749f32301b8cdf751ce5617b1c8934c96586a0662b/rapidfuzz-3.14.1-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:da011a373722fac6e64687297a1d17dc8461b82cb12c437845d5a5b161bc24b9", size = 2219394, upload-time = "2025-09-08T21:07:26.402Z" }, - { url = "https://files.pythonhosted.org/packages/11/bf/afb76adffe4406e6250f14ce48e60a7eb05d4624945bd3c044cfda575fbc/rapidfuzz-3.14.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5967d571243cfb9ad3710e6e628ab68c421a237b76e24a67ac22ee0ff12784d6", size = 3163582, upload-time = "2025-09-08T21:07:28.878Z" }, - { url = "https://files.pythonhosted.org/packages/42/34/e6405227560f61e956cb4c5de653b0f874751c5ada658d3532d6c1df328e/rapidfuzz-3.14.1-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:474f416cbb9099676de54aa41944c154ba8d25033ee460f87bb23e54af6d01c9", size = 1221116, upload-time = "2025-09-08T21:07:30.8Z" }, - { url = "https://files.pythonhosted.org/packages/55/e6/5b757e2e18de384b11d1daf59608453f0baf5d5d8d1c43e1a964af4dc19a/rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ae2d57464b59297f727c4e201ea99ec7b13935f1f056c753e8103da3f2fc2404", size = 2402670, upload-time = "2025-09-08T21:07:32.702Z" }, - { url = "https://files.pythonhosted.org/packages/43/c4/d753a415fe54531aa882e288db5ed77daaa72e05c1a39e1cbac00d23024f/rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:57047493a1f62f11354c7143c380b02f1b355c52733e6b03adb1cb0fe8fb8816", size = 2521659, upload-time = "2025-09-08T21:07:35.218Z" }, - { url = "https://files.pythonhosted.org/packages/cd/28/d4e7fe1515430db98f42deb794c7586a026d302fe70f0216b638d89cf10f/rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:4acc20776f225ee37d69517a237c090b9fa7e0836a0b8bc58868e9168ba6ef6f", size = 2788552, upload-time = "2025-09-08T21:07:37.188Z" }, - { url = "https://files.pythonhosted.org/packages/4f/00/eab05473af7a2cafb4f3994bc6bf408126b8eec99a569aac6254ac757db4/rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:4373f914ff524ee0146919dea96a40a8200ab157e5a15e777a74a769f73d8a4a", size = 3306261, upload-time = "2025-09-08T21:07:39.624Z" }, - { url = "https://files.pythonhosted.org/packages/d1/31/2feb8dfcfcff6508230cd2ccfdde7a8bf988c6fda142fe9ce5d3eb15704d/rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:37017b84953927807847016620d61251fe236bd4bcb25e27b6133d955bb9cafb", size = 4269522, upload-time = "2025-09-08T21:07:41.663Z" }, - { url = "https://files.pythonhosted.org/packages/b7/e7/f0a242687143cebd33a1fb165226b73bd9496d47c5acfad93de820a18fa8/rapidfuzz-3.14.1-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:60879fcae2f7618403c4c746a9a3eec89327d73148fb6e89a933b78442ff0669", size = 1945182, upload-time = "2025-09-08T21:07:51.84Z" }, - { url = "https://files.pythonhosted.org/packages/96/29/ca8a3f8525e3d0e7ab49cb927b5fb4a54855f794c9ecd0a0b60a6c96a05f/rapidfuzz-3.14.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:f94d61e44db3fc95a74006a394257af90fa6e826c900a501d749979ff495d702", size = 1413946, upload-time = "2025-09-08T21:07:53.702Z" }, - { url = "https://files.pythonhosted.org/packages/6d/10/0ed838b296fdac08ecbaa3a220fb4f1d887ff41b0be44fe8eade45bb650e/rapidfuzz-3.14.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:673ce55a9be5b772dade911909e42382c0828b8a50ed7f9168763fa6b9f7054d", size = 1860246, upload-time = "2025-09-08T21:08:02.762Z" }, - { url = "https://files.pythonhosted.org/packages/a4/70/a08f4a86387dec97508ead51cc7a4b3130d4e62ac0eae938a6d8e1feff14/rapidfuzz-3.14.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:45c62ada1980ebf4c64c4253993cc8daa018c63163f91db63bb3af69cb74c2e3", size = 1336749, upload-time = "2025-09-08T21:08:04.783Z" }, - { url = "https://files.pythonhosted.org/packages/05/c7/1b17347e30f2b50dd976c54641aa12003569acb1bdaabf45a5cc6f471c58/rapidfuzz-3.14.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4a21ccdf1bd7d57a1009030527ba8fae1c74bf832d0a08f6b67de8f5c506c96f", size = 1862602, upload-time = "2025-09-08T21:08:09.088Z" }, - { url = "https://files.pythonhosted.org/packages/09/cf/95d0dacac77eda22499991bd5f304c77c5965fb27348019a48ec3fe4a3f6/rapidfuzz-3.14.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:589fb0af91d3aff318750539c832ea1100dbac2c842fde24e42261df443845f6", size = 1339548, upload-time = "2025-09-08T21:08:11.059Z" }, + { url = "https://files.pythonhosted.org/packages/69/d1/0efa42a602ed466d3ca1c462eed5d62015c3fd2a402199e2c4b87aa5aa25/rapidfuzz-3.14.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b9fcd4d751a4fffa17aed1dde41647923c72c74af02459ad1222e3b0022da3a1", size = 1952376, upload-time = "2025-11-01T11:52:29.175Z" }, + { url = "https://files.pythonhosted.org/packages/be/00/37a169bb28b23850a164e6624b1eb299e1ad73c9e7c218ee15744e68d628/rapidfuzz-3.14.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4ad73afb688b36864a8d9b7344a9cf6da186c471e5790cbf541a635ee0f457f2", size = 1390903, upload-time = "2025-11-01T11:52:31.239Z" }, + { url = "https://files.pythonhosted.org/packages/3c/91/b37207cbbdb6eaafac3da3f55ea85287b27745cb416e75e15769b7d8abe8/rapidfuzz-3.14.3-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c5fb2d978a601820d2cfd111e2c221a9a7bfdf84b41a3ccbb96ceef29f2f1ac7", size = 1385655, upload-time = "2025-11-01T11:52:32.852Z" }, + { url = "https://files.pythonhosted.org/packages/f2/bb/ca53e518acf43430be61f23b9c5987bd1e01e74fcb7a9ee63e00f597aefb/rapidfuzz-3.14.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1d83b8b712fa37e06d59f29a4b49e2e9e8635e908fbc21552fe4d1163db9d2a1", size = 3164708, upload-time = "2025-11-01T11:52:34.618Z" }, + { url = "https://files.pythonhosted.org/packages/df/e1/7667bf2db3e52adb13cb933dd4a6a2efc66045d26fa150fc0feb64c26d61/rapidfuzz-3.14.3-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:dc8c07801df5206b81ed6bd6c35cb520cf9b6c64b9b0d19d699f8633dc942897", size = 1221106, upload-time = "2025-11-01T11:52:36.069Z" }, + { url = "https://files.pythonhosted.org/packages/05/8a/84d9f2d46a2c8eb2ccae81747c4901fa10fe4010aade2d57ce7b4b8e02ec/rapidfuzz-3.14.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c71ce6d4231e5ef2e33caa952bfe671cb9fd42e2afb11952df9fad41d5c821f9", size = 2406048, upload-time = "2025-11-01T11:52:37.936Z" }, + { url = "https://files.pythonhosted.org/packages/3c/a9/a0b7b7a1b81a020c034eb67c8e23b7e49f920004e295378de3046b0d99e1/rapidfuzz-3.14.3-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:0e38828d1381a0cceb8a4831212b2f673d46f5129a1897b0451c883eaf4a1747", size = 2527020, upload-time = "2025-11-01T11:52:39.657Z" }, + { url = "https://files.pythonhosted.org/packages/b4/bc/416df7d108b99b4942ba04dd4cf73c45c3aadb3ef003d95cad78b1d12eb9/rapidfuzz-3.14.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:da2a007434323904719158e50f3076a4dadb176ce43df28ed14610c773cc9825", size = 4273958, upload-time = "2025-11-01T11:52:41.017Z" }, + { url = "https://files.pythonhosted.org/packages/76/25/5b0a33ad3332ee1213068c66f7c14e9e221be90bab434f0cb4defa9d6660/rapidfuzz-3.14.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dea2d113e260a5da0c4003e0a5e9fdf24a9dc2bb9eaa43abd030a1e46ce7837d", size = 1953885, upload-time = "2025-11-01T11:52:47.75Z" }, + { url = "https://files.pythonhosted.org/packages/2d/ab/f1181f500c32c8fcf7c966f5920c7e56b9b1d03193386d19c956505c312d/rapidfuzz-3.14.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e6c31a4aa68cfa75d7eede8b0ed24b9e458447db604c2db53f358be9843d81d3", size = 1390200, upload-time = "2025-11-01T11:52:49.491Z" }, + { url = "https://files.pythonhosted.org/packages/14/2a/0f2de974ececad873865c6bb3ea3ad07c976ac293d5025b2d73325aac1d4/rapidfuzz-3.14.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:02821366d928e68ddcb567fed8723dad7ea3a979fada6283e6914d5858674850", size = 1389319, upload-time = "2025-11-01T11:52:51.224Z" }, + { url = "https://files.pythonhosted.org/packages/ed/69/309d8f3a0bb3031fd9b667174cc4af56000645298af7c2931be5c3d14bb4/rapidfuzz-3.14.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cfe8df315ab4e6db4e1be72c5170f8e66021acde22cd2f9d04d2058a9fd8162e", size = 3178495, upload-time = "2025-11-01T11:52:53.005Z" }, + { url = "https://files.pythonhosted.org/packages/10/b7/f9c44a99269ea5bf6fd6a40b84e858414b6e241288b9f2b74af470d222b1/rapidfuzz-3.14.3-cp311-cp311-manylinux_2_31_armv7l.whl", hash = "sha256:769f31c60cd79420188fcdb3c823227fc4a6deb35cafec9d14045c7f6743acae", size = 1228443, upload-time = "2025-11-01T11:52:54.991Z" }, + { url = "https://files.pythonhosted.org/packages/f2/0a/3b3137abac7f19c9220e14cd7ce993e35071a7655e7ef697785a3edfea1a/rapidfuzz-3.14.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:54fa03062124e73086dae66a3451c553c1e20a39c077fd704dc7154092c34c63", size = 2411998, upload-time = "2025-11-01T11:52:56.629Z" }, + { url = "https://files.pythonhosted.org/packages/f3/b6/983805a844d44670eaae63831024cdc97ada4e9c62abc6b20703e81e7f9b/rapidfuzz-3.14.3-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:834d1e818005ed0d4ae38f6b87b86fad9b0a74085467ece0727d20e15077c094", size = 2530120, upload-time = "2025-11-01T11:52:58.298Z" }, + { url = "https://files.pythonhosted.org/packages/b4/cc/2c97beb2b1be2d7595d805682472f1b1b844111027d5ad89b65e16bdbaaa/rapidfuzz-3.14.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:948b00e8476a91f510dd1ec07272efc7d78c275d83b630455559671d4e33b678", size = 4283129, upload-time = "2025-11-01T11:53:00.188Z" }, + { url = "https://files.pythonhosted.org/packages/fa/8e/3c215e860b458cfbedb3ed73bc72e98eb7e0ed72f6b48099604a7a3260c2/rapidfuzz-3.14.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:685c93ea961d135893b5984a5a9851637d23767feabe414ec974f43babbd8226", size = 1945306, upload-time = "2025-11-01T11:53:06.452Z" }, + { url = "https://files.pythonhosted.org/packages/36/d9/31b33512015c899f4a6e6af64df8dfe8acddf4c8b40a4b3e0e6e1bcd00e5/rapidfuzz-3.14.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fa7c8f26f009f8c673fbfb443792f0cf8cf50c4e18121ff1e285b5e08a94fbdb", size = 1390788, upload-time = "2025-11-01T11:53:08.721Z" }, + { url = "https://files.pythonhosted.org/packages/a9/67/2ee6f8de6e2081ccd560a571d9c9063184fe467f484a17fa90311a7f4a2e/rapidfuzz-3.14.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:57f878330c8d361b2ce76cebb8e3e1dc827293b6abf404e67d53260d27b5d941", size = 1374580, upload-time = "2025-11-01T11:53:10.164Z" }, + { url = "https://files.pythonhosted.org/packages/30/83/80d22997acd928eda7deadc19ccd15883904622396d6571e935993e0453a/rapidfuzz-3.14.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6c5f545f454871e6af05753a0172849c82feaf0f521c5ca62ba09e1b382d6382", size = 3154947, upload-time = "2025-11-01T11:53:12.093Z" }, + { url = "https://files.pythonhosted.org/packages/5b/cf/9f49831085a16384695f9fb096b99662f589e30b89b4a589a1ebc1a19d34/rapidfuzz-3.14.3-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:07aa0b5d8863e3151e05026a28e0d924accf0a7a3b605da978f0359bb804df43", size = 1223872, upload-time = "2025-11-01T11:53:13.664Z" }, + { url = "https://files.pythonhosted.org/packages/c8/0f/41ee8034e744b871c2e071ef0d360686f5ccfe5659f4fd96c3ec406b3c8b/rapidfuzz-3.14.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:73b07566bc7e010e7b5bd490fb04bb312e820970180df6b5655e9e6224c137db", size = 2392512, upload-time = "2025-11-01T11:53:15.109Z" }, + { url = "https://files.pythonhosted.org/packages/da/86/280038b6b0c2ccec54fb957c732ad6b41cc1fd03b288d76545b9cf98343f/rapidfuzz-3.14.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:6de00eb84c71476af7d3110cf25d8fe7c792d7f5fa86764ef0b4ca97e78ca3ed", size = 2521398, upload-time = "2025-11-01T11:53:17.146Z" }, + { url = "https://files.pythonhosted.org/packages/fa/7b/05c26f939607dca0006505e3216248ae2de631e39ef94dd63dbbf0860021/rapidfuzz-3.14.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d7843a1abf0091773a530636fdd2a49a41bcae22f9910b86b4f903e76ddc82dc", size = 4259416, upload-time = "2025-11-01T11:53:19.34Z" }, + { url = "https://files.pythonhosted.org/packages/e4/4f/0d94d09646853bd26978cb3a7541b6233c5760687777fa97da8de0d9a6ac/rapidfuzz-3.14.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dbcb726064b12f356bf10fffdb6db4b6dce5390b23627c08652b3f6e49aa56ae", size = 1939646, upload-time = "2025-11-01T11:53:25.292Z" }, + { url = "https://files.pythonhosted.org/packages/b6/eb/f96aefc00f3bbdbab9c0657363ea8437a207d7545ac1c3789673e05d80bd/rapidfuzz-3.14.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1704fc70d214294e554a2421b473779bcdeef715881c5e927dc0f11e1692a0ff", size = 1385512, upload-time = "2025-11-01T11:53:27.594Z" }, + { url = "https://files.pythonhosted.org/packages/26/34/71c4f7749c12ee223dba90017a5947e8f03731a7cc9f489b662a8e9e643d/rapidfuzz-3.14.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cc65e72790ddfd310c2c8912b45106e3800fefe160b0c2ef4d6b6fec4e826457", size = 1373571, upload-time = "2025-11-01T11:53:29.096Z" }, + { url = "https://files.pythonhosted.org/packages/32/00/ec8597a64f2be301ce1ee3290d067f49f6a7afb226b67d5f15b56d772ba5/rapidfuzz-3.14.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43e38c1305cffae8472572a0584d4ffc2f130865586a81038ca3965301f7c97c", size = 3156759, upload-time = "2025-11-01T11:53:30.777Z" }, + { url = "https://files.pythonhosted.org/packages/61/d5/b41eeb4930501cc899d5a9a7b5c9a33d85a670200d7e81658626dcc0ecc0/rapidfuzz-3.14.3-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:e195a77d06c03c98b3fc06b8a28576ba824392ce40de8c708f96ce04849a052e", size = 1222067, upload-time = "2025-11-01T11:53:32.334Z" }, + { url = "https://files.pythonhosted.org/packages/2a/7d/6d9abb4ffd1027c6ed837b425834f3bed8344472eb3a503ab55b3407c721/rapidfuzz-3.14.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1b7ef2f4b8583a744338a18f12c69693c194fb6777c0e9ada98cd4d9e8f09d10", size = 2394775, upload-time = "2025-11-01T11:53:34.24Z" }, + { url = "https://files.pythonhosted.org/packages/15/ce/4f3ab4c401c5a55364da1ffff8cc879fc97b4e5f4fa96033827da491a973/rapidfuzz-3.14.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:a2135b138bcdcb4c3742d417f215ac2d8c2b87bde15b0feede231ae95f09ec41", size = 2526123, upload-time = "2025-11-01T11:53:35.779Z" }, + { url = "https://files.pythonhosted.org/packages/c1/4b/54f804975376a328f57293bd817c12c9036171d15cf7292032e3f5820b2d/rapidfuzz-3.14.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:33a325ed0e8e1aa20c3e75f8ab057a7b248fdea7843c2a19ade0008906c14af0", size = 4262874, upload-time = "2025-11-01T11:53:37.866Z" }, + { url = "https://files.pythonhosted.org/packages/92/13/a486369e63ff3c1a58444d16b15c5feb943edd0e6c28a1d7d67cb8946b8f/rapidfuzz-3.14.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a0a28add871425c2fe94358c6300bbeb0bc2ed828ca003420ac6825408f5a424", size = 1967702, upload-time = "2025-11-01T11:53:44.554Z" }, + { url = "https://files.pythonhosted.org/packages/f1/82/efad25e260b7810f01d6b69122685e355bed78c94a12784bac4e0beb2afb/rapidfuzz-3.14.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:010e12e2411a4854b0434f920e72b717c43f8ec48d57e7affe5c42ecfa05dd0e", size = 1410702, upload-time = "2025-11-01T11:53:46.066Z" }, + { url = "https://files.pythonhosted.org/packages/ba/1a/34c977b860cde91082eae4a97ae503f43e0d84d4af301d857679b66f9869/rapidfuzz-3.14.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5cfc3d57abd83c734d1714ec39c88a34dd69c85474918ebc21296f1e61eb5ca8", size = 1382337, upload-time = "2025-11-01T11:53:47.62Z" }, + { url = "https://files.pythonhosted.org/packages/88/74/f50ea0e24a5880a9159e8fd256b84d8f4634c2f6b4f98028bdd31891d907/rapidfuzz-3.14.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:89acb8cbb52904f763e5ac238083b9fc193bed8d1f03c80568b20e4cef43a519", size = 3165563, upload-time = "2025-11-01T11:53:49.216Z" }, + { url = "https://files.pythonhosted.org/packages/e8/7a/e744359404d7737049c26099423fc54bcbf303de5d870d07d2fb1410f567/rapidfuzz-3.14.3-cp313-cp313t-manylinux_2_31_armv7l.whl", hash = "sha256:7d9af908c2f371bfb9c985bd134e295038e3031e666e4b2ade1e7cb7f5af2f1a", size = 1214727, upload-time = "2025-11-01T11:53:50.883Z" }, + { url = "https://files.pythonhosted.org/packages/d3/2e/87adfe14ce75768ec6c2b8acd0e05e85e84be4be5e3d283cdae360afc4fe/rapidfuzz-3.14.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:1f1925619627f8798f8c3a391d81071336942e5fe8467bc3c567f982e7ce2897", size = 2403349, upload-time = "2025-11-01T11:53:52.322Z" }, + { url = "https://files.pythonhosted.org/packages/70/17/6c0b2b2bff9c8b12e12624c07aa22e922b0c72a490f180fa9183d1ef2c75/rapidfuzz-3.14.3-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:152555187360978119e98ce3e8263d70dd0c40c7541193fc302e9b7125cf8f58", size = 2507596, upload-time = "2025-11-01T11:53:53.835Z" }, + { url = "https://files.pythonhosted.org/packages/c3/d1/87852a7cbe4da7b962174c749a47433881a63a817d04f3e385ea9babcd9e/rapidfuzz-3.14.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:52619d25a09546b8db078981ca88939d72caa6b8701edd8b22e16482a38e799f", size = 4273595, upload-time = "2025-11-01T11:53:55.961Z" }, + { url = "https://files.pythonhosted.org/packages/32/6f/1b88aaeade83abc5418788f9e6b01efefcd1a69d65ded37d89cd1662be41/rapidfuzz-3.14.3-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:442125473b247227d3f2de807a11da6c08ccf536572d1be943f8e262bae7e4ea", size = 1942086, upload-time = "2025-11-01T11:54:02.592Z" }, + { url = "https://files.pythonhosted.org/packages/a0/2c/b23861347436cb10f46c2bd425489ec462790faaa360a54a7ede5f78de88/rapidfuzz-3.14.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1ec0c8c0c3d4f97ced46b2e191e883f8c82dbbf6d5ebc1842366d7eff13cd5a6", size = 1386993, upload-time = "2025-11-01T11:54:04.12Z" }, + { url = "https://files.pythonhosted.org/packages/83/86/5d72e2c060aa1fbdc1f7362d938f6b237dff91f5b9fc5dd7cc297e112250/rapidfuzz-3.14.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2dc37bc20272f388b8c3a4eba4febc6e77e50a8f450c472def4751e7678f55e4", size = 1379126, upload-time = "2025-11-01T11:54:05.777Z" }, + { url = "https://files.pythonhosted.org/packages/c9/bc/ef2cee3e4d8b3fc22705ff519f0d487eecc756abdc7c25d53686689d6cf2/rapidfuzz-3.14.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dee362e7e79bae940a5e2b3f6d09c6554db6a4e301cc68343886c08be99844f1", size = 3159304, upload-time = "2025-11-01T11:54:07.351Z" }, + { url = "https://files.pythonhosted.org/packages/a0/36/dc5f2f62bbc7bc90be1f75eeaf49ed9502094bb19290dfb4747317b17f12/rapidfuzz-3.14.3-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:4b39921df948388a863f0e267edf2c36302983459b021ab928d4b801cbe6a421", size = 1218207, upload-time = "2025-11-01T11:54:09.641Z" }, + { url = "https://files.pythonhosted.org/packages/df/7e/8f4be75c1bc62f47edf2bbbe2370ee482fae655ebcc4718ac3827ead3904/rapidfuzz-3.14.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:beda6aa9bc44d1d81242e7b291b446be352d3451f8217fcb068fc2933927d53b", size = 2401245, upload-time = "2025-11-01T11:54:11.543Z" }, + { url = "https://files.pythonhosted.org/packages/05/38/f7c92759e1bb188dd05b80d11c630ba59b8d7856657baf454ff56059c2ab/rapidfuzz-3.14.3-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:6a014ba09657abfcfeed64b7d09407acb29af436d7fc075b23a298a7e4a6b41c", size = 2518308, upload-time = "2025-11-01T11:54:13.134Z" }, + { url = "https://files.pythonhosted.org/packages/c7/ac/85820f70fed5ecb5f1d9a55f1e1e2090ef62985ef41db289b5ac5ec56e28/rapidfuzz-3.14.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:32eeafa3abce138bb725550c0e228fc7eaeec7059aa8093d9cbbec2b58c2371a", size = 4265011, upload-time = "2025-11-01T11:54:15.087Z" }, + { url = "https://files.pythonhosted.org/packages/03/1b/6b6084576ba87bf21877c77218a0c97ba98cb285b0c02eaaee3acd7c4513/rapidfuzz-3.14.3-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:cec3c0da88562727dd5a5a364bd9efeb535400ff0bfb1443156dd139a1dd7b50", size = 1968658, upload-time = "2025-11-01T11:54:22.25Z" }, + { url = "https://files.pythonhosted.org/packages/38/c0/fb02a0db80d95704b0a6469cc394e8c38501abf7e1c0b2afe3261d1510c2/rapidfuzz-3.14.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:d1fa009f8b1100e4880868137e7bf0501422898f7674f2adcd85d5a67f041296", size = 1410742, upload-time = "2025-11-01T11:54:23.863Z" }, + { url = "https://files.pythonhosted.org/packages/a4/72/3fbf12819fc6afc8ec75a45204013b40979d068971e535a7f3512b05e765/rapidfuzz-3.14.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b86daa7419b5e8b180690efd1fdbac43ff19230803282521c5b5a9c83977655", size = 1382810, upload-time = "2025-11-01T11:54:25.571Z" }, + { url = "https://files.pythonhosted.org/packages/0f/18/0f1991d59bb7eee28922a00f79d83eafa8c7bfb4e8edebf4af2a160e7196/rapidfuzz-3.14.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c7bd1816db05d6c5ffb3a4df0a2b7b56fb8c81ef584d08e37058afa217da91b1", size = 3166349, upload-time = "2025-11-01T11:54:27.195Z" }, + { url = "https://files.pythonhosted.org/packages/0d/f0/baa958b1989c8f88c78bbb329e969440cf330b5a01a982669986495bb980/rapidfuzz-3.14.3-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:33da4bbaf44e9755b0ce192597f3bde7372fe2e381ab305f41b707a95ac57aa7", size = 1214994, upload-time = "2025-11-01T11:54:28.821Z" }, + { url = "https://files.pythonhosted.org/packages/e4/a0/cd12ec71f9b2519a3954febc5740291cceabc64c87bc6433afcb36259f3b/rapidfuzz-3.14.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:3fecce764cf5a991ee2195a844196da840aba72029b2612f95ac68a8b74946bf", size = 2403919, upload-time = "2025-11-01T11:54:30.393Z" }, + { url = "https://files.pythonhosted.org/packages/0b/ce/019bd2176c1644098eced4f0595cb4b3ef52e4941ac9a5854f209d0a6e16/rapidfuzz-3.14.3-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:ecd7453e02cf072258c3a6b8e930230d789d5d46cc849503729f9ce475d0e785", size = 2508346, upload-time = "2025-11-01T11:54:32.048Z" }, + { url = "https://files.pythonhosted.org/packages/23/f8/be16c68e2c9e6c4f23e8f4adbb7bccc9483200087ed28ff76c5312da9b14/rapidfuzz-3.14.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ea188aa00e9bcae8c8411f006a5f2f06c4607a02f24eab0d8dc58566aa911f35", size = 4274105, upload-time = "2025-11-01T11:54:33.701Z" }, + { url = "https://files.pythonhosted.org/packages/c9/33/b5bd6475c7c27164b5becc9b0e3eb978f1e3640fea590dd3dced6006ee83/rapidfuzz-3.14.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7cf174b52cb3ef5d49e45d0a1133b7e7d0ecf770ed01f97ae9962c5c91d97d23", size = 1888499, upload-time = "2025-11-01T11:54:42.094Z" }, + { url = "https://files.pythonhosted.org/packages/30/d2/89d65d4db4bb931beade9121bc71ad916b5fa9396e807d11b33731494e8e/rapidfuzz-3.14.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:442cba39957a008dfc5bdef21a9c3f4379e30ffb4e41b8555dbaf4887eca9300", size = 1336747, upload-time = "2025-11-01T11:54:43.957Z" }, + { url = "https://files.pythonhosted.org/packages/85/33/cd87d92b23f0b06e8914a61cea6850c6d495ca027f669fab7a379041827a/rapidfuzz-3.14.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1faa0f8f76ba75fd7b142c984947c280ef6558b5067af2ae9b8729b0a0f99ede", size = 1352187, upload-time = "2025-11-01T11:54:45.518Z" }, + { url = "https://files.pythonhosted.org/packages/22/20/9d30b4a1ab26aac22fff17d21dec7e9089ccddfe25151d0a8bb57001dc3d/rapidfuzz-3.14.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1e6eefec45625c634926a9fd46c9e4f31118ac8f3156fff9494422cee45207e6", size = 3101472, upload-time = "2025-11-01T11:54:47.255Z" }, ] [[package]] @@ -3510,25 +3502,25 @@ wheels = [ [[package]] name = "ruff" -version = "0.14.0" +version = "0.14.5" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/41/b9/9bd84453ed6dd04688de9b3f3a4146a1698e8faae2ceeccce4e14c67ae17/ruff-0.14.0.tar.gz", hash = "sha256:62ec8969b7510f77945df916de15da55311fade8d6050995ff7f680afe582c57", size = 5452071, upload-time = "2025-10-07T18:21:55.763Z" } +sdist = { url = "https://files.pythonhosted.org/packages/82/fa/fbb67a5780ae0f704876cb8ac92d6d76da41da4dc72b7ed3565ab18f2f52/ruff-0.14.5.tar.gz", hash = "sha256:8d3b48d7d8aad423d3137af7ab6c8b1e38e4de104800f0d596990f6ada1a9fc1", size = 5615944, upload-time = "2025-11-13T19:58:51.155Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/3a/4e/79d463a5f80654e93fa653ebfb98e0becc3f0e7cf6219c9ddedf1e197072/ruff-0.14.0-py3-none-linux_armv6l.whl", hash = "sha256:58e15bffa7054299becf4bab8a1187062c6f8cafbe9f6e39e0d5aface455d6b3", size = 12494532, upload-time = "2025-10-07T18:21:00.373Z" }, - { url = "https://files.pythonhosted.org/packages/ee/40/e2392f445ed8e02aa6105d49db4bfff01957379064c30f4811c3bf38aece/ruff-0.14.0-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:838d1b065f4df676b7c9957992f2304e41ead7a50a568185efd404297d5701e8", size = 13160768, upload-time = "2025-10-07T18:21:04.73Z" }, - { url = "https://files.pythonhosted.org/packages/75/da/2a656ea7c6b9bd14c7209918268dd40e1e6cea65f4bb9880eaaa43b055cd/ruff-0.14.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:703799d059ba50f745605b04638fa7e9682cc3da084b2092feee63500ff3d9b8", size = 12363376, upload-time = "2025-10-07T18:21:07.833Z" }, - { url = "https://files.pythonhosted.org/packages/42/e2/1ffef5a1875add82416ff388fcb7ea8b22a53be67a638487937aea81af27/ruff-0.14.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ba9a8925e90f861502f7d974cc60e18ca29c72bb0ee8bfeabb6ade35a3abde7", size = 12608055, upload-time = "2025-10-07T18:21:10.72Z" }, - { url = "https://files.pythonhosted.org/packages/4a/32/986725199d7cee510d9f1dfdf95bf1efc5fa9dd714d0d85c1fb1f6be3bc3/ruff-0.14.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e41f785498bd200ffc276eb9e1570c019c1d907b07cfb081092c8ad51975bbe7", size = 12318544, upload-time = "2025-10-07T18:21:13.741Z" }, - { url = "https://files.pythonhosted.org/packages/9a/ed/4969cefd53315164c94eaf4da7cfba1f267dc275b0abdd593d11c90829a3/ruff-0.14.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30a58c087aef4584c193aebf2700f0fbcfc1e77b89c7385e3139956fa90434e2", size = 14001280, upload-time = "2025-10-07T18:21:16.411Z" }, - { url = "https://files.pythonhosted.org/packages/ab/ad/96c1fc9f8854c37681c9613d825925c7f24ca1acfc62a4eb3896b50bacd2/ruff-0.14.0-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:f8d07350bc7af0a5ce8812b7d5c1a7293cf02476752f23fdfc500d24b79b783c", size = 15027286, upload-time = "2025-10-07T18:21:19.577Z" }, - { url = "https://files.pythonhosted.org/packages/b3/00/1426978f97df4fe331074baf69615f579dc4e7c37bb4c6f57c2aad80c87f/ruff-0.14.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eec3bbbf3a7d5482b5c1f42d5fc972774d71d107d447919fca620b0be3e3b75e", size = 14451506, upload-time = "2025-10-07T18:21:22.779Z" }, - { url = "https://files.pythonhosted.org/packages/58/d5/9c1cea6e493c0cf0647674cca26b579ea9d2a213b74b5c195fbeb9678e15/ruff-0.14.0-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:16b68e183a0e28e5c176d51004aaa40559e8f90065a10a559176713fcf435206", size = 13437384, upload-time = "2025-10-07T18:21:25.758Z" }, - { url = "https://files.pythonhosted.org/packages/29/b4/4cd6a4331e999fc05d9d77729c95503f99eae3ba1160469f2b64866964e3/ruff-0.14.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb732d17db2e945cfcbbc52af0143eda1da36ca8ae25083dd4f66f1542fdf82e", size = 13447976, upload-time = "2025-10-07T18:21:28.83Z" }, - { url = "https://files.pythonhosted.org/packages/3b/c0/ac42f546d07e4f49f62332576cb845d45c67cf5610d1851254e341d563b6/ruff-0.14.0-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:c958f66ab884b7873e72df38dcabee03d556a8f2ee1b8538ee1c2bbd619883dd", size = 13682850, upload-time = "2025-10-07T18:21:31.842Z" }, - { url = "https://files.pythonhosted.org/packages/5f/c4/4b0c9bcadd45b4c29fe1af9c5d1dc0ca87b4021665dfbe1c4688d407aa20/ruff-0.14.0-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:7eb0499a2e01f6e0c285afc5bac43ab380cbfc17cd43a2e1dd10ec97d6f2c42d", size = 12449825, upload-time = "2025-10-07T18:21:35.074Z" }, - { url = "https://files.pythonhosted.org/packages/4b/a8/e2e76288e6c16540fa820d148d83e55f15e994d852485f221b9524514730/ruff-0.14.0-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:4c63b2d99fafa05efca0ab198fd48fa6030d57e4423df3f18e03aa62518c565f", size = 12272599, upload-time = "2025-10-07T18:21:38.08Z" }, - { url = "https://files.pythonhosted.org/packages/18/14/e2815d8eff847391af632b22422b8207704222ff575dec8d044f9ab779b2/ruff-0.14.0-py3-none-musllinux_1_2_i686.whl", hash = "sha256:668fce701b7a222f3f5327f86909db2bbe99c30877c8001ff934c5413812ac02", size = 13193828, upload-time = "2025-10-07T18:21:41.216Z" }, - { url = "https://files.pythonhosted.org/packages/44/c6/61ccc2987cf0aecc588ff8f3212dea64840770e60d78f5606cd7dc34de32/ruff-0.14.0-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:a86bf575e05cb68dcb34e4c7dfe1064d44d3f0c04bbc0491949092192b515296", size = 13628617, upload-time = "2025-10-07T18:21:44.04Z" }, + { url = "https://files.pythonhosted.org/packages/68/31/c07e9c535248d10836a94e4f4e8c5a31a1beed6f169b31405b227872d4f4/ruff-0.14.5-py3-none-linux_armv6l.whl", hash = "sha256:f3b8248123b586de44a8018bcc9fefe31d23dda57a34e6f0e1e53bd51fd63594", size = 13171630, upload-time = "2025-11-13T19:57:54.894Z" }, + { url = "https://files.pythonhosted.org/packages/8e/5c/283c62516dca697cd604c2796d1487396b7a436b2f0ecc3fd412aca470e0/ruff-0.14.5-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:f7a75236570318c7a30edd7f5491945f0169de738d945ca8784500b517163a72", size = 13413925, upload-time = "2025-11-13T19:57:59.181Z" }, + { url = "https://files.pythonhosted.org/packages/b6/f3/aa319f4afc22cb6fcba2b9cdfc0f03bbf747e59ab7a8c5e90173857a1361/ruff-0.14.5-py3-none-macosx_11_0_arm64.whl", hash = "sha256:6d146132d1ee115f8802356a2dc9a634dbf58184c51bff21f313e8cd1c74899a", size = 12574040, upload-time = "2025-11-13T19:58:02.056Z" }, + { url = "https://files.pythonhosted.org/packages/f9/7f/cb5845fcc7c7e88ed57f58670189fc2ff517fe2134c3821e77e29fd3b0c8/ruff-0.14.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2380596653dcd20b057794d55681571a257a42327da8894b93bbd6111aa801f", size = 13009755, upload-time = "2025-11-13T19:58:05.172Z" }, + { url = "https://files.pythonhosted.org/packages/21/d2/bcbedbb6bcb9253085981730687ddc0cc7b2e18e8dc13cf4453de905d7a0/ruff-0.14.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2d1fa985a42b1f075a098fa1ab9d472b712bdb17ad87a8ec86e45e7fa6273e68", size = 12937641, upload-time = "2025-11-13T19:58:08.345Z" }, + { url = "https://files.pythonhosted.org/packages/a4/58/e25de28a572bdd60ffc6bb71fc7fd25a94ec6a076942e372437649cbb02a/ruff-0.14.5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88f0770d42b7fa02bbefddde15d235ca3aa24e2f0137388cc15b2dcbb1f7c7a7", size = 13610854, upload-time = "2025-11-13T19:58:11.419Z" }, + { url = "https://files.pythonhosted.org/packages/7d/24/43bb3fd23ecee9861970978ea1a7a63e12a204d319248a7e8af539984280/ruff-0.14.5-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:3676cb02b9061fee7294661071c4709fa21419ea9176087cb77e64410926eb78", size = 15061088, upload-time = "2025-11-13T19:58:14.551Z" }, + { url = "https://files.pythonhosted.org/packages/23/44/a022f288d61c2f8c8645b24c364b719aee293ffc7d633a2ca4d116b9c716/ruff-0.14.5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b595bedf6bc9cab647c4a173a61acf4f1ac5f2b545203ba82f30fcb10b0318fb", size = 14734717, upload-time = "2025-11-13T19:58:17.518Z" }, + { url = "https://files.pythonhosted.org/packages/58/81/5c6ba44de7e44c91f68073e0658109d8373b0590940efe5bd7753a2585a3/ruff-0.14.5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f55382725ad0bdb2e8ee2babcbbfb16f124f5a59496a2f6a46f1d9d99d93e6e2", size = 14028812, upload-time = "2025-11-13T19:58:20.533Z" }, + { url = "https://files.pythonhosted.org/packages/ad/ef/41a8b60f8462cb320f68615b00299ebb12660097c952c600c762078420f8/ruff-0.14.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7497d19dce23976bdaca24345ae131a1d38dcfe1b0850ad8e9e6e4fa321a6e19", size = 13825656, upload-time = "2025-11-13T19:58:23.345Z" }, + { url = "https://files.pythonhosted.org/packages/7c/00/207e5de737fdb59b39eb1fac806904fe05681981b46d6a6db9468501062e/ruff-0.14.5-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:410e781f1122d6be4f446981dd479470af86537fb0b8857f27a6e872f65a38e4", size = 13959922, upload-time = "2025-11-13T19:58:26.537Z" }, + { url = "https://files.pythonhosted.org/packages/bc/7e/fa1f5c2776db4be405040293618846a2dece5c70b050874c2d1f10f24776/ruff-0.14.5-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:c01be527ef4c91a6d55e53b337bfe2c0f82af024cc1a33c44792d6844e2331e1", size = 12932501, upload-time = "2025-11-13T19:58:29.822Z" }, + { url = "https://files.pythonhosted.org/packages/67/d8/d86bf784d693a764b59479a6bbdc9515ae42c340a5dc5ab1dabef847bfaa/ruff-0.14.5-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:f66e9bb762e68d66e48550b59c74314168ebb46199886c5c5aa0b0fbcc81b151", size = 12927319, upload-time = "2025-11-13T19:58:32.923Z" }, + { url = "https://files.pythonhosted.org/packages/ac/de/ee0b304d450ae007ce0cb3e455fe24fbcaaedae4ebaad6c23831c6663651/ruff-0.14.5-py3-none-musllinux_1_2_i686.whl", hash = "sha256:d93be8f1fa01022337f1f8f3bcaa7ffee2d0b03f00922c45c2207954f351f465", size = 13206209, upload-time = "2025-11-13T19:58:35.952Z" }, + { url = "https://files.pythonhosted.org/packages/33/aa/193ca7e3a92d74f17d9d5771a765965d2cf42c86e6f0fd95b13969115723/ruff-0.14.5-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:c135d4b681f7401fe0e7312017e41aba9b3160861105726b76cfa14bc25aa367", size = 13953709, upload-time = "2025-11-13T19:58:39.002Z" }, ] [[package]] @@ -3976,14 +3968,14 @@ wheels = [ [[package]] name = "types-bleach" -version = "6.2.0.20250809" +version = "6.3.0.20251115" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "types-html5lib", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/53/50/f85660f9893da1a2cea3e14675c9ab4a75f2a5c12a8ab79de959e5f3f2ad/types_bleach-6.2.0.20250809.tar.gz", hash = "sha256:188d7a1119f6c953140b513ed57ba4213755695815472c19d0c22ac09c79b90b", size = 11216, upload-time = "2025-08-09T03:16:46.876Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5f/54/3e0d9e2e0d7a00cf9b1a2c35160038c8bf5cb7ad80003c5d7e4e5af1e9dd/types_bleach-6.3.0.20251115.tar.gz", hash = "sha256:96911b20f169a18524d03b61fa7e98a08c411292f7cdb5dc191057f55dad9ae3", size = 11452, upload-time = "2025-11-15T03:00:28.919Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7d/41/51075b7c9fd62f8ea636e6ca619ca25e5617c066a1a19d12e2f7d9343edb/types_bleach-6.2.0.20250809-py3-none-any.whl", hash = "sha256:0b372a75117947d9ac8a31ae733fd0f8d92ec75c4772e7b37093ba3fa5b48fb9", size = 11968, upload-time = "2025-08-09T03:16:46.174Z" }, + { url = "https://files.pythonhosted.org/packages/ee/fb/9f016a969603ef949a573158a58dd293948ed187c1f9f76c7cfe1bb96705/types_bleach-6.3.0.20251115-py3-none-any.whl", hash = "sha256:f81e7cf4ebac3f3d60b66b3fd5236c324e65037d1b28d22c94d5b457f0b98f42", size = 12015, upload-time = "2025-11-15T03:00:27.785Z" }, ] [[package]] @@ -4036,11 +4028,11 @@ wheels = [ [[package]] name = "types-markdown" -version = "3.9.0.20250906" +version = "3.10.0.20251106" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/fb/dd/8a91a5f4dce705eff6862e01e8fd9984cdc55e6d6c3cfcadc68410c43abf/types_markdown-3.9.0.20250906.tar.gz", hash = "sha256:f02dc1a2d130b093de4910c64b2d0a811ae7020f03624df41c667818d2fee050", size = 19439, upload-time = "2025-09-06T02:45:23.617Z" } +sdist = { url = "https://files.pythonhosted.org/packages/de/e4/060f0dadd9b551cae77d6407f2bc84b168f918d90650454aff219c1b3ed2/types_markdown-3.10.0.20251106.tar.gz", hash = "sha256:12836f7fcbd7221db8baeb0d3a2f820b95050d0824bfa9665c67b4d144a1afa1", size = 19486, upload-time = "2025-11-06T03:06:44.317Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/29/17/b0b9d315422eae106af1d30e51afe4b59c18b42311605fed9068ac6aa065/types_markdown-3.9.0.20250906-py3-none-any.whl", hash = "sha256:afac4297e4e75f00b4043f9b3a989dc5924230d065996a233b9bce894c438cc2", size = 25830, upload-time = "2025-09-06T02:45:22.211Z" }, + { url = "https://files.pythonhosted.org/packages/92/58/f666ca9391f2a8bd33bb0b0797cde6ac3e764866708d5f8aec6fab215320/types_markdown-3.10.0.20251106-py3-none-any.whl", hash = "sha256:2c39512a573899b59efae07e247ba088a75b70e3415e81277692718f430afd7e", size = 25862, upload-time = "2025-11-06T03:06:43.082Z" }, ] [[package]] From 46853e10dc1ff485d34c73565c8c3c7c7a72c3b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 03:04:23 +0000 Subject: [PATCH 085/133] Chore(deps-dev): Bump @types/node from 24.6.1 to 24.9.2 in /src-ui (#11265) Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.6.1 to 24.9.2. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-version: 24.9.2 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src-ui/package.json | 2 +- src-ui/pnpm-lock.yaml | 376 +++++++++++++++++++++--------------------- 2 files changed, 189 insertions(+), 189 deletions(-) diff --git a/src-ui/package.json b/src-ui/package.json index 339b378c2..8fb3ab506 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -55,7 +55,7 @@ "@codecov/webpack-plugin": "^1.9.1", "@playwright/test": "^1.55.1", "@types/jest": "^30.0.0", - "@types/node": "^24.6.1", + "@types/node": "^24.10.1", "@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/parser": "^8.45.0", "@typescript-eslint/utils": "^8.45.0", diff --git a/src-ui/pnpm-lock.yaml b/src-ui/pnpm-lock.yaml index 13a84f1c2..0b98a28db 100644 --- a/src-ui/pnpm-lock.yaml +++ b/src-ui/pnpm-lock.yaml @@ -92,10 +92,10 @@ importers: devDependencies: '@angular-builders/custom-webpack': specifier: ^20.0.0 - version: 20.0.0(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.6.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)))(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(vite@7.1.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) + version: 20.0.0(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) '@angular-builders/jest': specifier: ^20.0.0 - version: 20.0.0(617e23274585616dcf62fd78c9140eac) + version: 20.0.0(a0f61c2d4c2deba6c0f5abd5d60664ab) '@angular-devkit/core': specifier: ^20.3.3 version: 20.3.3(chokidar@4.0.3) @@ -119,10 +119,10 @@ importers: version: 20.3.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) '@angular/build': specifier: ^20.3.3 - version: 20.3.3(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.6.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) + version: 20.3.3(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) '@angular/cli': specifier: ~20.3.3 - version: 20.3.3(@types/node@24.6.1)(chokidar@4.0.3) + version: 20.3.3(@types/node@24.10.1)(chokidar@4.0.3) '@angular/compiler-cli': specifier: ~20.3.2 version: 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) @@ -136,8 +136,8 @@ importers: specifier: ^30.0.0 version: 30.0.0 '@types/node': - specifier: ^24.6.1 - version: 24.6.1 + specifier: ^24.10.1 + version: 24.10.1 '@typescript-eslint/eslint-plugin': specifier: ^8.45.0 version: 8.45.0(@typescript-eslint/parser@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) @@ -152,7 +152,7 @@ importers: version: 9.36.0(jiti@1.21.7) jest: specifier: 30.2.0 - version: 30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)) + version: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) jest-environment-jsdom: specifier: ^30.2.0 version: 30.2.0(canvas@3.0.0) @@ -161,7 +161,7 @@ importers: version: 16.0.0 jest-preset-angular: specifier: ^15.0.2 - version: 15.0.2(ccefccc315e3e4bd30d78eb49c90d46a) + version: 15.0.2(53f1eecb3c13a66432ac1820fed37a4d) jest-websocket-mock: specifier: ^2.5.0 version: 2.5.0 @@ -170,7 +170,7 @@ importers: version: 4.3.0(prettier@3.4.2)(typescript@5.8.3) ts-node: specifier: ~10.9.1 - version: 10.9.2(@types/node@24.6.1)(typescript@5.8.3) + version: 10.9.2(@types/node@24.10.1)(typescript@5.8.3) typescript: specifier: ^5.8.3 version: 5.8.3 @@ -3023,8 +3023,8 @@ packages: '@types/node-forge@1.3.11': resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} - '@types/node@24.6.1': - resolution: {integrity: sha512-ljvjjs3DNXummeIaooB4cLBKg2U6SPI6Hjra/9rRIy7CpM0HpLtG9HptkMKAb4HYWy5S7HUvJEuWgr/y0U8SHw==} + '@types/node@24.10.1': + resolution: {integrity: sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==} '@types/qs@6.14.0': resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==} @@ -6539,8 +6539,8 @@ packages: engines: {node: '>=0.8.0'} hasBin: true - undici-types@7.13.0: - resolution: {integrity: sha512-Ov2Rr9Sx+fRgagJ5AX0qvItZG/JKKoBRAVITs1zk7IqZGTJUwgUr7qoYBpWwakpWilTZFM98rG/AFRocu10iIQ==} + undici-types@7.16.0: + resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} undici@5.29.0: resolution: {integrity: sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg==} @@ -7084,10 +7084,10 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@angular-builders/common@4.0.0(@types/node@24.6.1)(chokidar@4.0.3)(typescript@5.8.3)': + '@angular-builders/common@4.0.0(@types/node@24.10.1)(chokidar@4.0.3)(typescript@5.8.3)': dependencies: '@angular-devkit/core': 20.3.3(chokidar@4.0.3) - ts-node: 10.9.2(@types/node@24.6.1)(typescript@5.8.3) + ts-node: 10.9.2(@types/node@24.10.1)(typescript@5.8.3) tsconfig-paths: 4.2.0 transitivePeerDependencies: - '@swc/core' @@ -7096,13 +7096,13 @@ snapshots: - chokidar - typescript - '@angular-builders/custom-webpack@20.0.0(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.6.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)))(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(vite@7.1.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0)': + '@angular-builders/custom-webpack@20.0.0(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0)': dependencies: - '@angular-builders/common': 4.0.0(@types/node@24.6.1)(chokidar@4.0.3)(typescript@5.8.3) + '@angular-builders/common': 4.0.0(@types/node@24.10.1)(chokidar@4.0.3)(typescript@5.8.3) '@angular-devkit/architect': 0.2000.4(chokidar@4.0.3) - '@angular-devkit/build-angular': 20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.6.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) + '@angular-devkit/build-angular': 20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) '@angular-devkit/core': 20.3.3(chokidar@4.0.3) - '@angular/build': 20.3.3(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.6.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) + '@angular/build': 20.3.3(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) lodash: 4.17.21 webpack-merge: 6.0.1 @@ -7150,17 +7150,17 @@ snapshots: - webpack-cli - yaml - '@angular-builders/jest@20.0.0(617e23274585616dcf62fd78c9140eac)': + '@angular-builders/jest@20.0.0(a0f61c2d4c2deba6c0f5abd5d60664ab)': dependencies: - '@angular-builders/common': 4.0.0(@types/node@24.6.1)(chokidar@4.0.3)(typescript@5.8.3) + '@angular-builders/common': 4.0.0(@types/node@24.10.1)(chokidar@4.0.3)(typescript@5.8.3) '@angular-devkit/architect': 0.2000.4(chokidar@4.0.3) - '@angular-devkit/build-angular': 20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.6.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) + '@angular-devkit/build-angular': 20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) '@angular-devkit/core': 20.3.3(chokidar@4.0.3) '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) '@angular/platform-browser-dynamic': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))) - jest: 30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)) - jest-preset-angular: 14.6.0(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser-dynamic@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))))(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(canvas@3.0.0)(jest@30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)))(jsdom@26.1.0(canvas@3.0.0))(typescript@5.8.3) + jest: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) + jest-preset-angular: 14.6.0(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser-dynamic@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))))(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(canvas@3.0.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jsdom@26.1.0(canvas@3.0.0))(typescript@5.8.3) lodash: 4.17.21 transitivePeerDependencies: - '@babel/core' @@ -7192,13 +7192,13 @@ snapshots: transitivePeerDependencies: - chokidar - '@angular-devkit/build-angular@20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.6.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0)': + '@angular-devkit/build-angular@20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.2000.4(chokidar@4.0.3) '@angular-devkit/build-webpack': 0.2000.4(chokidar@4.0.3)(webpack-dev-server@5.2.1(webpack@5.102.0))(webpack@5.99.8(esbuild@0.25.5)) '@angular-devkit/core': 20.0.4(chokidar@4.0.3) - '@angular/build': 20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.6.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) + '@angular/build': 20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) '@babel/core': 7.27.1 '@babel/generator': 7.27.1 @@ -7211,7 +7211,7 @@ snapshots: '@babel/runtime': 7.27.1 '@discoveryjs/json-ext': 0.6.3 '@ngtools/webpack': 20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(typescript@5.8.3)(webpack@5.99.8(esbuild@0.25.5)) - '@vitejs/plugin-basic-ssl': 2.0.0(vite@7.1.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0)) + '@vitejs/plugin-basic-ssl': 2.0.0(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0)) ansi-colors: 4.1.3 autoprefixer: 10.4.21(postcss@8.5.3) babel-loader: 10.0.0(@babel/core@7.27.1)(webpack@5.99.8(esbuild@0.25.5)) @@ -7256,7 +7256,7 @@ snapshots: '@angular/localize': 20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2) '@angular/platform-browser': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)) esbuild: 0.25.5 - jest: 30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)) + jest: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) jest-environment-jsdom: 30.2.0(canvas@3.0.0) transitivePeerDependencies: - '@angular/compiler' @@ -7386,7 +7386,7 @@ snapshots: eslint: 9.36.0(jiti@1.21.7) typescript: 5.8.3 - '@angular/build@20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.6.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0)': + '@angular/build@20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.2000.4(chokidar@4.0.3) @@ -7395,8 +7395,8 @@ snapshots: '@babel/core': 7.27.1 '@babel/helper-annotate-as-pure': 7.27.1 '@babel/helper-split-export-declaration': 7.24.7 - '@inquirer/confirm': 5.1.10(@types/node@24.6.1) - '@vitejs/plugin-basic-ssl': 2.0.0(vite@6.3.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.88.0)(terser@5.39.1)(yaml@2.7.0)) + '@inquirer/confirm': 5.1.10(@types/node@24.10.1) + '@vitejs/plugin-basic-ssl': 2.0.0(vite@6.3.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.88.0)(terser@5.39.1)(yaml@2.7.0)) beasties: 0.3.4 browserslist: 4.26.3 esbuild: 0.25.5 @@ -7416,7 +7416,7 @@ snapshots: tinyglobby: 0.2.13 tslib: 2.8.1 typescript: 5.8.3 - vite: 6.3.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.88.0)(terser@5.39.1)(yaml@2.7.0) + vite: 6.3.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.88.0)(terser@5.39.1)(yaml@2.7.0) watchpack: 2.4.2 optionalDependencies: '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) @@ -7438,7 +7438,7 @@ snapshots: - tsx - yaml - '@angular/build@20.3.3(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.6.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0)': + '@angular/build@20.3.3(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.2003.3(chokidar@4.0.3) @@ -7447,8 +7447,8 @@ snapshots: '@babel/core': 7.28.3 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-split-export-declaration': 7.24.7 - '@inquirer/confirm': 5.1.14(@types/node@24.6.1) - '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.1.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0)) + '@inquirer/confirm': 5.1.14(@types/node@24.10.1) + '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0)) beasties: 0.3.5 browserslist: 4.26.3 esbuild: 0.25.9 @@ -7468,7 +7468,7 @@ snapshots: tinyglobby: 0.2.14 tslib: 2.8.1 typescript: 5.8.3 - vite: 7.1.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0) + vite: 7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0) watchpack: 2.4.4 optionalDependencies: '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) @@ -7498,13 +7498,13 @@ snapshots: rxjs: 7.8.2 tslib: 2.8.1 - '@angular/cli@20.3.3(@types/node@24.6.1)(chokidar@4.0.3)': + '@angular/cli@20.3.3(@types/node@24.10.1)(chokidar@4.0.3)': dependencies: '@angular-devkit/architect': 0.2003.3(chokidar@4.0.3) '@angular-devkit/core': 20.3.3(chokidar@4.0.3) '@angular-devkit/schematics': 20.3.3(chokidar@4.0.3) - '@inquirer/prompts': 7.8.2(@types/node@24.6.1) - '@listr2/prompt-adapter-inquirer': 3.0.1(@inquirer/prompts@7.8.2(@types/node@24.6.1))(@types/node@24.6.1)(listr2@9.0.1) + '@inquirer/prompts': 7.8.2(@types/node@24.10.1) + '@listr2/prompt-adapter-inquirer': 3.0.1(@inquirer/prompts@7.8.2(@types/node@24.10.1))(@types/node@24.10.1)(listr2@9.0.1) '@modelcontextprotocol/sdk': 1.17.3 '@schematics/angular': 20.3.3(chokidar@4.0.3) '@yarnpkg/lockfile': 1.1.0 @@ -8775,142 +8775,142 @@ snapshots: '@inquirer/ansi@1.0.0': {} - '@inquirer/checkbox@4.2.4(@types/node@24.6.1)': + '@inquirer/checkbox@4.2.4(@types/node@24.10.1)': dependencies: '@inquirer/ansi': 1.0.0 - '@inquirer/core': 10.2.2(@types/node@24.6.1) + '@inquirer/core': 10.2.2(@types/node@24.10.1) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.6.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 - '@inquirer/confirm@5.1.10(@types/node@24.6.1)': + '@inquirer/confirm@5.1.10(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.1) - '@inquirer/type': 3.0.8(@types/node@24.6.1) + '@inquirer/core': 10.2.2(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 - '@inquirer/confirm@5.1.14(@types/node@24.6.1)': + '@inquirer/confirm@5.1.14(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.1) - '@inquirer/type': 3.0.8(@types/node@24.6.1) + '@inquirer/core': 10.2.2(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 - '@inquirer/confirm@5.1.18(@types/node@24.6.1)': + '@inquirer/confirm@5.1.18(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.1) - '@inquirer/type': 3.0.8(@types/node@24.6.1) + '@inquirer/core': 10.2.2(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 - '@inquirer/core@10.2.2(@types/node@24.6.1)': + '@inquirer/core@10.2.2(@types/node@24.10.1)': dependencies: '@inquirer/ansi': 1.0.0 '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.6.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) cli-width: 4.1.0 mute-stream: 2.0.0 signal-exit: 4.1.0 wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 - '@inquirer/editor@4.2.20(@types/node@24.6.1)': + '@inquirer/editor@4.2.20(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.1) - '@inquirer/external-editor': 1.0.2(@types/node@24.6.1) - '@inquirer/type': 3.0.8(@types/node@24.6.1) + '@inquirer/core': 10.2.2(@types/node@24.10.1) + '@inquirer/external-editor': 1.0.2(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 - '@inquirer/expand@4.0.20(@types/node@24.6.1)': + '@inquirer/expand@4.0.20(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.1) - '@inquirer/type': 3.0.8(@types/node@24.6.1) + '@inquirer/core': 10.2.2(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 - '@inquirer/external-editor@1.0.2(@types/node@24.6.1)': + '@inquirer/external-editor@1.0.2(@types/node@24.10.1)': dependencies: chardet: 2.1.0 iconv-lite: 0.7.0 optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@inquirer/figures@1.0.13': {} - '@inquirer/input@4.2.4(@types/node@24.6.1)': + '@inquirer/input@4.2.4(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.1) - '@inquirer/type': 3.0.8(@types/node@24.6.1) + '@inquirer/core': 10.2.2(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 - '@inquirer/number@3.0.20(@types/node@24.6.1)': + '@inquirer/number@3.0.20(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.1) - '@inquirer/type': 3.0.8(@types/node@24.6.1) + '@inquirer/core': 10.2.2(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 - '@inquirer/password@4.0.20(@types/node@24.6.1)': + '@inquirer/password@4.0.20(@types/node@24.10.1)': dependencies: '@inquirer/ansi': 1.0.0 - '@inquirer/core': 10.2.2(@types/node@24.6.1) - '@inquirer/type': 3.0.8(@types/node@24.6.1) + '@inquirer/core': 10.2.2(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 - '@inquirer/prompts@7.8.2(@types/node@24.6.1)': + '@inquirer/prompts@7.8.2(@types/node@24.10.1)': dependencies: - '@inquirer/checkbox': 4.2.4(@types/node@24.6.1) - '@inquirer/confirm': 5.1.18(@types/node@24.6.1) - '@inquirer/editor': 4.2.20(@types/node@24.6.1) - '@inquirer/expand': 4.0.20(@types/node@24.6.1) - '@inquirer/input': 4.2.4(@types/node@24.6.1) - '@inquirer/number': 3.0.20(@types/node@24.6.1) - '@inquirer/password': 4.0.20(@types/node@24.6.1) - '@inquirer/rawlist': 4.1.8(@types/node@24.6.1) - '@inquirer/search': 3.1.3(@types/node@24.6.1) - '@inquirer/select': 4.3.4(@types/node@24.6.1) + '@inquirer/checkbox': 4.2.4(@types/node@24.10.1) + '@inquirer/confirm': 5.1.18(@types/node@24.10.1) + '@inquirer/editor': 4.2.20(@types/node@24.10.1) + '@inquirer/expand': 4.0.20(@types/node@24.10.1) + '@inquirer/input': 4.2.4(@types/node@24.10.1) + '@inquirer/number': 3.0.20(@types/node@24.10.1) + '@inquirer/password': 4.0.20(@types/node@24.10.1) + '@inquirer/rawlist': 4.1.8(@types/node@24.10.1) + '@inquirer/search': 3.1.3(@types/node@24.10.1) + '@inquirer/select': 4.3.4(@types/node@24.10.1) optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 - '@inquirer/rawlist@4.1.8(@types/node@24.6.1)': + '@inquirer/rawlist@4.1.8(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.1) - '@inquirer/type': 3.0.8(@types/node@24.6.1) + '@inquirer/core': 10.2.2(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 - '@inquirer/search@3.1.3(@types/node@24.6.1)': + '@inquirer/search@3.1.3(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.6.1) + '@inquirer/core': 10.2.2(@types/node@24.10.1) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.6.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 - '@inquirer/select@4.3.4(@types/node@24.6.1)': + '@inquirer/select@4.3.4(@types/node@24.10.1)': dependencies: '@inquirer/ansi': 1.0.0 - '@inquirer/core': 10.2.2(@types/node@24.6.1) + '@inquirer/core': 10.2.2(@types/node@24.10.1) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.6.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 - '@inquirer/type@3.0.8(@types/node@24.6.1)': + '@inquirer/type@3.0.8(@types/node@24.10.1)': optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@isaacs/balanced-match@4.0.1': {} @@ -8944,13 +8944,13 @@ snapshots: '@jest/console@30.2.0': dependencies: '@jest/types': 30.2.0 - '@types/node': 24.6.1 + '@types/node': 24.10.1 chalk: 4.1.2 jest-message-util: 30.2.0 jest-util: 30.2.0 slash: 3.0.0 - '@jest/core@30.2.0(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3))': + '@jest/core@30.2.0(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3))': dependencies: '@jest/console': 30.2.0 '@jest/pattern': 30.0.1 @@ -8958,14 +8958,14 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.6.1 + '@types/node': 24.10.1 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 4.3.0 exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.2.0 - jest-config: 30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)) + jest-config: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) jest-haste-map: 30.2.0 jest-message-util: 30.2.0 jest-regex-util: 30.0.1 @@ -8994,7 +8994,7 @@ snapshots: '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 '@types/jsdom': 21.1.7 - '@types/node': 24.6.1 + '@types/node': 24.10.1 jest-mock: 30.2.0 jest-util: 30.2.0 jsdom: 26.1.0(canvas@3.0.0) @@ -9005,14 +9005,14 @@ snapshots: dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 24.6.1 + '@types/node': 24.10.1 jest-mock: 29.7.0 '@jest/environment@30.2.0': dependencies: '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.6.1 + '@types/node': 24.10.1 jest-mock: 30.2.0 '@jest/expect-utils@30.0.5': @@ -9034,7 +9034,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 24.6.1 + '@types/node': 24.10.1 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -9043,7 +9043,7 @@ snapshots: dependencies: '@jest/types': 30.2.0 '@sinonjs/fake-timers': 13.0.5 - '@types/node': 24.6.1 + '@types/node': 24.10.1 jest-message-util: 30.2.0 jest-mock: 30.2.0 jest-util: 30.2.0 @@ -9063,7 +9063,7 @@ snapshots: '@jest/pattern@30.0.1': dependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 jest-regex-util: 30.0.1 '@jest/reporters@30.2.0': @@ -9074,7 +9074,7 @@ snapshots: '@jest/transform': 30.2.0 '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.31 - '@types/node': 24.6.1 + '@types/node': 24.10.1 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit-x: 0.2.2 @@ -9154,7 +9154,7 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -9164,7 +9164,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -9174,7 +9174,7 @@ snapshots: '@jest/schemas': 30.0.5 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -9232,10 +9232,10 @@ snapshots: '@leichtgewicht/ip-codec@2.0.5': {} - '@listr2/prompt-adapter-inquirer@3.0.1(@inquirer/prompts@7.8.2(@types/node@24.6.1))(@types/node@24.6.1)(listr2@9.0.1)': + '@listr2/prompt-adapter-inquirer@3.0.1(@inquirer/prompts@7.8.2(@types/node@24.10.1))(@types/node@24.10.1)(listr2@9.0.1)': dependencies: - '@inquirer/prompts': 7.8.2(@types/node@24.6.1) - '@inquirer/type': 3.0.8(@types/node@24.6.1) + '@inquirer/prompts': 7.8.2(@types/node@24.10.1) + '@inquirer/type': 3.0.8(@types/node@24.10.1) listr2: 9.0.1 transitivePeerDependencies: - '@types/node' @@ -9912,20 +9912,20 @@ snapshots: '@types/body-parser@1.19.6': dependencies: '@types/connect': 3.4.38 - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/bonjour@3.5.13': dependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/connect-history-api-fallback@1.5.4': dependencies: '@types/express-serve-static-core': 5.0.6 - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/connect@3.4.38': dependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/eslint-scope@3.7.7': dependencies: @@ -9943,14 +9943,14 @@ snapshots: '@types/express-serve-static-core@4.19.6': dependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/qs': 6.14.0 '@types/range-parser': 1.2.7 '@types/send': 0.17.5 '@types/express-serve-static-core@5.0.6': dependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/qs': 6.14.0 '@types/range-parser': 1.2.7 '@types/send': 0.17.5 @@ -9966,7 +9966,7 @@ snapshots: '@types/http-proxy@1.17.16': dependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/istanbul-lib-coverage@2.0.6': {} @@ -9985,13 +9985,13 @@ snapshots: '@types/jsdom@20.0.1': dependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/tough-cookie': 4.0.5 parse5: 7.3.0 '@types/jsdom@21.1.7': dependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/tough-cookie': 4.0.5 parse5: 7.3.0 @@ -10001,11 +10001,11 @@ snapshots: '@types/node-forge@1.3.11': dependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 - '@types/node@24.6.1': + '@types/node@24.10.1': dependencies: - undici-types: 7.13.0 + undici-types: 7.16.0 '@types/qs@6.14.0': {} @@ -10016,7 +10016,7 @@ snapshots: '@types/send@0.17.5': dependencies: '@types/mime': 1.3.5 - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/serve-index@1.9.4': dependencies: @@ -10025,12 +10025,12 @@ snapshots: '@types/serve-static@1.15.8': dependencies: '@types/http-errors': 2.0.5 - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/send': 0.17.5 '@types/sockjs@0.3.36': dependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/stack-utils@2.0.3': {} @@ -10038,7 +10038,7 @@ snapshots: '@types/ws@8.18.1': dependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@types/yargs-parser@21.0.3': {} @@ -10200,17 +10200,17 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.11.1': optional: true - '@vitejs/plugin-basic-ssl@2.0.0(vite@6.3.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.88.0)(terser@5.39.1)(yaml@2.7.0))': + '@vitejs/plugin-basic-ssl@2.0.0(vite@6.3.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.88.0)(terser@5.39.1)(yaml@2.7.0))': dependencies: - vite: 6.3.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.88.0)(terser@5.39.1)(yaml@2.7.0) + vite: 6.3.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.88.0)(terser@5.39.1)(yaml@2.7.0) - '@vitejs/plugin-basic-ssl@2.0.0(vite@7.1.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))': + '@vitejs/plugin-basic-ssl@2.0.0(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))': dependencies: - vite: 7.1.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0) + vite: 7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0) - '@vitejs/plugin-basic-ssl@2.1.0(vite@7.1.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))': + '@vitejs/plugin-basic-ssl@2.1.0(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))': dependencies: - vite: 7.1.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0) + vite: 7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0) '@webassemblyjs/ast@1.14.1': dependencies: @@ -11911,7 +11911,7 @@ snapshots: '@jest/expect': 30.2.0 '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.6.1 + '@types/node': 24.10.1 chalk: 4.1.2 co: 4.6.0 dedent: 1.7.0 @@ -11931,15 +11931,15 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)): + jest-cli@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)): dependencies: - '@jest/core': 30.2.0(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)) + '@jest/core': 30.2.0(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)) + jest-config: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) jest-util: 30.2.0 jest-validate: 30.2.0 yargs: 17.7.2 @@ -11950,7 +11950,7 @@ snapshots: - supports-color - ts-node - jest-config@30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)): + jest-config@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)): dependencies: '@babel/core': 7.28.4 '@jest/get-type': 30.1.0 @@ -11977,8 +11977,8 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 24.6.1 - ts-node: 10.9.2(@types/node@24.6.1)(typescript@5.8.3) + '@types/node': 24.10.1 + ts-node: 10.9.2(@types/node@24.10.1)(typescript@5.8.3) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -12022,7 +12022,7 @@ snapshots: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 '@types/jsdom': 20.0.1 - '@types/node': 24.6.1 + '@types/node': 24.10.1 jest-mock: 29.7.0 jest-util: 29.7.0 jsdom: 20.0.3(canvas@3.0.0) @@ -12038,7 +12038,7 @@ snapshots: '@jest/environment': 30.2.0 '@jest/environment-jsdom-abstract': 30.2.0(canvas@3.0.0)(jsdom@26.1.0(canvas@3.0.0)) '@types/jsdom': 21.1.7 - '@types/node': 24.6.1 + '@types/node': 24.10.1 jsdom: 26.1.0(canvas@3.0.0) optionalDependencies: canvas: 3.0.0 @@ -12052,7 +12052,7 @@ snapshots: '@jest/environment': 30.2.0 '@jest/fake-timers': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.6.1 + '@types/node': 24.10.1 jest-mock: 30.2.0 jest-util: 30.2.0 jest-validate: 30.2.0 @@ -12062,7 +12062,7 @@ snapshots: jest-haste-map@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 24.6.1 + '@types/node': 24.10.1 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -12139,37 +12139,37 @@ snapshots: jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 24.6.1 + '@types/node': 24.10.1 jest-util: 29.7.0 jest-mock@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 24.6.1 + '@types/node': 24.10.1 jest-util: 30.0.5 jest-mock@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 24.6.1 + '@types/node': 24.10.1 jest-util: 30.2.0 jest-pnp-resolver@1.2.3(jest-resolve@30.2.0): optionalDependencies: jest-resolve: 30.2.0 - jest-preset-angular@14.6.0(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser-dynamic@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))))(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(canvas@3.0.0)(jest@30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)))(jsdom@26.1.0(canvas@3.0.0))(typescript@5.8.3): + jest-preset-angular@14.6.0(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser-dynamic@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))))(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(canvas@3.0.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jsdom@26.1.0(canvas@3.0.0))(typescript@5.8.3): dependencies: '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) '@angular/platform-browser-dynamic': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))) bs-logger: 0.2.6 esbuild-wasm: 0.25.10 - jest: 30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)) + jest: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) jest-environment-jsdom: 29.7.0(canvas@3.0.0) jest-util: 29.7.0 pretty-format: 29.7.0 - ts-jest: 29.4.4(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.25.10)(jest-util@29.7.0)(jest@30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)))(typescript@5.8.3) + ts-jest: 29.4.4(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.25.10)(jest-util@29.7.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3) typescript: 5.8.3 optionalDependencies: esbuild: 0.25.10 @@ -12184,7 +12184,7 @@ snapshots: - supports-color - utf-8-validate - jest-preset-angular@15.0.2(ccefccc315e3e4bd30d78eb49c90d46a): + jest-preset-angular@15.0.2(53f1eecb3c13a66432ac1820fed37a4d): dependencies: '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) @@ -12193,11 +12193,11 @@ snapshots: '@jest/environment-jsdom-abstract': 30.2.0(canvas@3.0.0)(jsdom@26.1.0(canvas@3.0.0)) bs-logger: 0.2.6 esbuild-wasm: 0.25.10 - jest: 30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)) + jest: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) jest-util: 30.2.0 jsdom: 26.1.0(canvas@3.0.0) pretty-format: 30.2.0 - ts-jest: 29.4.4(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.25.10)(jest-util@30.2.0)(jest@30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)))(typescript@5.8.3) + ts-jest: 29.4.4(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.25.10)(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3) typescript: 5.8.3 optionalDependencies: esbuild: 0.25.10 @@ -12235,7 +12235,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.6.1 + '@types/node': 24.10.1 chalk: 4.1.2 emittery: 0.13.1 exit-x: 0.2.2 @@ -12264,7 +12264,7 @@ snapshots: '@jest/test-result': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.6.1 + '@types/node': 24.10.1 chalk: 4.1.2 cjs-module-lexer: 2.1.0 collect-v8-coverage: 1.0.2 @@ -12311,7 +12311,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 24.6.1 + '@types/node': 24.10.1 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -12320,7 +12320,7 @@ snapshots: jest-util@30.0.5: dependencies: '@jest/types': 30.0.5 - '@types/node': 24.6.1 + '@types/node': 24.10.1 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -12329,7 +12329,7 @@ snapshots: jest-util@30.2.0: dependencies: '@jest/types': 30.2.0 - '@types/node': 24.6.1 + '@types/node': 24.10.1 chalk: 4.1.2 ci-info: 4.3.0 graceful-fs: 4.2.11 @@ -12348,7 +12348,7 @@ snapshots: dependencies: '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 - '@types/node': 24.6.1 + '@types/node': 24.10.1 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -12362,24 +12362,24 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@30.2.0: dependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 '@ungap/structured-clone': 1.3.0 jest-util: 30.2.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)): + jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)): dependencies: - '@jest/core': 30.2.0(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)) + '@jest/core': 30.2.0(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) '@jest/types': 30.2.0 import-local: 3.2.0 - jest-cli: 30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)) + jest-cli: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -14085,12 +14085,12 @@ snapshots: dependencies: typescript: 5.8.3 - ts-jest@29.4.4(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.25.10)(jest-util@29.7.0)(jest@30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)))(typescript@5.8.3): + ts-jest@29.4.4(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.25.10)(jest-util@29.7.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)) + jest: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -14106,12 +14106,12 @@ snapshots: esbuild: 0.25.10 jest-util: 29.7.0 - ts-jest@29.4.4(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.25.10)(jest-util@30.2.0)(jest@30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)))(typescript@5.8.3): + ts-jest@29.4.4(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.25.10)(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 handlebars: 4.7.8 - jest: 30.2.0(@types/node@24.6.1)(ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3)) + jest: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 @@ -14127,14 +14127,14 @@ snapshots: esbuild: 0.25.10 jest-util: 30.2.0 - ts-node@10.9.2(@types/node@24.6.1)(typescript@5.8.3): + ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 24.6.1 + '@types/node': 24.10.1 acorn: 8.14.0 acorn-walk: 8.3.1 arg: 4.1.3 @@ -14196,7 +14196,7 @@ snapshots: uglify-js@3.19.3: optional: true - undici-types@7.13.0: {} + undici-types@7.16.0: {} undici@5.29.0: dependencies: @@ -14300,7 +14300,7 @@ snapshots: vary@1.1.2: {} - vite@6.3.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.88.0)(terser@5.39.1)(yaml@2.7.0): + vite@6.3.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.88.0)(terser@5.39.1)(yaml@2.7.0): dependencies: esbuild: 0.25.5 fdir: 6.5.0(picomatch@4.0.2) @@ -14309,7 +14309,7 @@ snapshots: rollup: 4.40.2 tinyglobby: 0.2.13 optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 fsevents: 2.3.3 jiti: 1.21.7 less: 4.3.0 @@ -14317,7 +14317,7 @@ snapshots: terser: 5.39.1 yaml: 2.7.0 - vite@7.1.5(@types/node@24.6.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0): + vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0): dependencies: esbuild: 0.25.9 fdir: 6.5.0(picomatch@4.0.3) @@ -14326,7 +14326,7 @@ snapshots: rollup: 4.52.3 tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 24.6.1 + '@types/node': 24.10.1 fsevents: 2.3.3 jiti: 1.21.7 less: 4.3.0 From 1ed8f1d086b06e295a6867646eb08a2ce1b34b8d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 03:20:27 +0000 Subject: [PATCH 086/133] Chore(deps-dev): Bump jest-preset-angular (#11261) Bumps the frontend-jest-dependencies group in /src-ui with 1 update: [jest-preset-angular](https://github.com/thymikee/jest-preset-angular). Updates `jest-preset-angular` from 15.0.2 to 15.0.3 - [Release notes](https://github.com/thymikee/jest-preset-angular/releases) - [Changelog](https://github.com/thymikee/jest-preset-angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/thymikee/jest-preset-angular/compare/v15.0.2...v15.0.3) --- updated-dependencies: - dependency-name: jest-preset-angular dependency-version: 15.0.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: frontend-jest-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src-ui/package.json | 2 +- src-ui/pnpm-lock.yaml | 348 ++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 333 insertions(+), 17 deletions(-) diff --git a/src-ui/package.json b/src-ui/package.json index 8fb3ab506..e477d62a8 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -63,7 +63,7 @@ "jest": "30.2.0", "jest-environment-jsdom": "^30.2.0", "jest-junit": "^16.0.0", - "jest-preset-angular": "^15.0.2", + "jest-preset-angular": "^15.0.3", "jest-websocket-mock": "^2.5.0", "prettier-plugin-organize-imports": "^4.3.0", "ts-node": "~10.9.1", diff --git a/src-ui/pnpm-lock.yaml b/src-ui/pnpm-lock.yaml index 0b98a28db..8f188e786 100644 --- a/src-ui/pnpm-lock.yaml +++ b/src-ui/pnpm-lock.yaml @@ -160,8 +160,8 @@ importers: specifier: ^16.0.0 version: 16.0.0 jest-preset-angular: - specifier: ^15.0.2 - version: 15.0.2(53f1eecb3c13a66432ac1820fed37a4d) + specifier: ^15.0.3 + version: 15.0.3(53f1eecb3c13a66432ac1820fed37a4d) jest-websocket-mock: specifier: ^2.5.0 version: 2.5.0 @@ -1275,6 +1275,12 @@ packages: cpu: [ppc64] os: [aix] + '@esbuild/aix-ppc64@0.27.0': + resolution: {integrity: sha512-KuZrd2hRjz01y5JK9mEBSD3Vj3mbCvemhT466rSuJYeE/hjuBrHfjjcjMdTm/sz7au+++sdbJZJmuBwQLuw68A==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + '@esbuild/android-arm64@0.25.10': resolution: {integrity: sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==} engines: {node: '>=18'} @@ -1293,6 +1299,12 @@ packages: cpu: [arm64] os: [android] + '@esbuild/android-arm64@0.27.0': + resolution: {integrity: sha512-CC3vt4+1xZrs97/PKDkl0yN7w8edvU2vZvAFGD16n9F0Cvniy5qvzRXjfO1l94efczkkQE6g1x0i73Qf5uthOQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + '@esbuild/android-arm@0.25.10': resolution: {integrity: sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==} engines: {node: '>=18'} @@ -1311,6 +1323,12 @@ packages: cpu: [arm] os: [android] + '@esbuild/android-arm@0.27.0': + resolution: {integrity: sha512-j67aezrPNYWJEOHUNLPj9maeJte7uSMM6gMoxfPC9hOg8N02JuQi/T7ewumf4tNvJadFkvLZMlAq73b9uwdMyQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + '@esbuild/android-x64@0.25.10': resolution: {integrity: sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==} engines: {node: '>=18'} @@ -1329,6 +1347,12 @@ packages: cpu: [x64] os: [android] + '@esbuild/android-x64@0.27.0': + resolution: {integrity: sha512-wurMkF1nmQajBO1+0CJmcN17U4BP6GqNSROP8t0X/Jiw2ltYGLHpEksp9MpoBqkrFR3kv2/te6Sha26k3+yZ9Q==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + '@esbuild/darwin-arm64@0.25.10': resolution: {integrity: sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==} engines: {node: '>=18'} @@ -1347,6 +1371,12 @@ packages: cpu: [arm64] os: [darwin] + '@esbuild/darwin-arm64@0.27.0': + resolution: {integrity: sha512-uJOQKYCcHhg07DL7i8MzjvS2LaP7W7Pn/7uA0B5S1EnqAirJtbyw4yC5jQ5qcFjHK9l6o/MX9QisBg12kNkdHg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + '@esbuild/darwin-x64@0.25.10': resolution: {integrity: sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==} engines: {node: '>=18'} @@ -1365,6 +1395,12 @@ packages: cpu: [x64] os: [darwin] + '@esbuild/darwin-x64@0.27.0': + resolution: {integrity: sha512-8mG6arH3yB/4ZXiEnXof5MK72dE6zM9cDvUcPtxhUZsDjESl9JipZYW60C3JGreKCEP+p8P/72r69m4AZGJd5g==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + '@esbuild/freebsd-arm64@0.25.10': resolution: {integrity: sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==} engines: {node: '>=18'} @@ -1383,6 +1419,12 @@ packages: cpu: [arm64] os: [freebsd] + '@esbuild/freebsd-arm64@0.27.0': + resolution: {integrity: sha512-9FHtyO988CwNMMOE3YIeci+UV+x5Zy8fI2qHNpsEtSF83YPBmE8UWmfYAQg6Ux7Gsmd4FejZqnEUZCMGaNQHQw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + '@esbuild/freebsd-x64@0.25.10': resolution: {integrity: sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==} engines: {node: '>=18'} @@ -1401,6 +1443,12 @@ packages: cpu: [x64] os: [freebsd] + '@esbuild/freebsd-x64@0.27.0': + resolution: {integrity: sha512-zCMeMXI4HS/tXvJz8vWGexpZj2YVtRAihHLk1imZj4efx1BQzN76YFeKqlDr3bUWI26wHwLWPd3rwh6pe4EV7g==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + '@esbuild/linux-arm64@0.25.10': resolution: {integrity: sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==} engines: {node: '>=18'} @@ -1419,6 +1467,12 @@ packages: cpu: [arm64] os: [linux] + '@esbuild/linux-arm64@0.27.0': + resolution: {integrity: sha512-AS18v0V+vZiLJyi/4LphvBE+OIX682Pu7ZYNsdUHyUKSoRwdnOsMf6FDekwoAFKej14WAkOef3zAORJgAtXnlQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + '@esbuild/linux-arm@0.25.10': resolution: {integrity: sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==} engines: {node: '>=18'} @@ -1437,6 +1491,12 @@ packages: cpu: [arm] os: [linux] + '@esbuild/linux-arm@0.27.0': + resolution: {integrity: sha512-t76XLQDpxgmq2cNXKTVEB7O7YMb42atj2Re2Haf45HkaUpjM2J0UuJZDuaGbPbamzZ7bawyGFUkodL+zcE+jvQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + '@esbuild/linux-ia32@0.25.10': resolution: {integrity: sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==} engines: {node: '>=18'} @@ -1455,6 +1515,12 @@ packages: cpu: [ia32] os: [linux] + '@esbuild/linux-ia32@0.27.0': + resolution: {integrity: sha512-Mz1jxqm/kfgKkc/KLHC5qIujMvnnarD9ra1cEcrs7qshTUSksPihGrWHVG5+osAIQ68577Zpww7SGapmzSt4Nw==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + '@esbuild/linux-loong64@0.25.10': resolution: {integrity: sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==} engines: {node: '>=18'} @@ -1473,6 +1539,12 @@ packages: cpu: [loong64] os: [linux] + '@esbuild/linux-loong64@0.27.0': + resolution: {integrity: sha512-QbEREjdJeIreIAbdG2hLU1yXm1uu+LTdzoq1KCo4G4pFOLlvIspBm36QrQOar9LFduavoWX2msNFAAAY9j4BDg==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + '@esbuild/linux-mips64el@0.25.10': resolution: {integrity: sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==} engines: {node: '>=18'} @@ -1491,6 +1563,12 @@ packages: cpu: [mips64el] os: [linux] + '@esbuild/linux-mips64el@0.27.0': + resolution: {integrity: sha512-sJz3zRNe4tO2wxvDpH/HYJilb6+2YJxo/ZNbVdtFiKDufzWq4JmKAiHy9iGoLjAV7r/W32VgaHGkk35cUXlNOg==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + '@esbuild/linux-ppc64@0.25.10': resolution: {integrity: sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==} engines: {node: '>=18'} @@ -1509,6 +1587,12 @@ packages: cpu: [ppc64] os: [linux] + '@esbuild/linux-ppc64@0.27.0': + resolution: {integrity: sha512-z9N10FBD0DCS2dmSABDBb5TLAyF1/ydVb+N4pi88T45efQ/w4ohr/F/QYCkxDPnkhkp6AIpIcQKQ8F0ANoA2JA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + '@esbuild/linux-riscv64@0.25.10': resolution: {integrity: sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==} engines: {node: '>=18'} @@ -1527,6 +1611,12 @@ packages: cpu: [riscv64] os: [linux] + '@esbuild/linux-riscv64@0.27.0': + resolution: {integrity: sha512-pQdyAIZ0BWIC5GyvVFn5awDiO14TkT/19FTmFcPdDec94KJ1uZcmFs21Fo8auMXzD4Tt+diXu1LW1gHus9fhFQ==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + '@esbuild/linux-s390x@0.25.10': resolution: {integrity: sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==} engines: {node: '>=18'} @@ -1545,6 +1635,12 @@ packages: cpu: [s390x] os: [linux] + '@esbuild/linux-s390x@0.27.0': + resolution: {integrity: sha512-hPlRWR4eIDDEci953RI1BLZitgi5uqcsjKMxwYfmi4LcwyWo2IcRP+lThVnKjNtk90pLS8nKdroXYOqW+QQH+w==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + '@esbuild/linux-x64@0.25.10': resolution: {integrity: sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==} engines: {node: '>=18'} @@ -1563,6 +1659,12 @@ packages: cpu: [x64] os: [linux] + '@esbuild/linux-x64@0.27.0': + resolution: {integrity: sha512-1hBWx4OUJE2cab++aVZ7pObD6s+DK4mPGpemtnAORBvb5l/g5xFGk0vc0PjSkrDs0XaXj9yyob3d14XqvnQ4gw==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + '@esbuild/netbsd-arm64@0.25.10': resolution: {integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==} engines: {node: '>=18'} @@ -1581,6 +1683,12 @@ packages: cpu: [arm64] os: [netbsd] + '@esbuild/netbsd-arm64@0.27.0': + resolution: {integrity: sha512-6m0sfQfxfQfy1qRuecMkJlf1cIzTOgyaeXaiVaaki8/v+WB+U4hc6ik15ZW6TAllRlg/WuQXxWj1jx6C+dfy3w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + '@esbuild/netbsd-x64@0.25.10': resolution: {integrity: sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==} engines: {node: '>=18'} @@ -1599,6 +1707,12 @@ packages: cpu: [x64] os: [netbsd] + '@esbuild/netbsd-x64@0.27.0': + resolution: {integrity: sha512-xbbOdfn06FtcJ9d0ShxxvSn2iUsGd/lgPIO2V3VZIPDbEaIj1/3nBBe1AwuEZKXVXkMmpr6LUAgMkLD/4D2PPA==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + '@esbuild/openbsd-arm64@0.25.10': resolution: {integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==} engines: {node: '>=18'} @@ -1617,6 +1731,12 @@ packages: cpu: [arm64] os: [openbsd] + '@esbuild/openbsd-arm64@0.27.0': + resolution: {integrity: sha512-fWgqR8uNbCQ/GGv0yhzttj6sU/9Z5/Sv/VGU3F5OuXK6J6SlriONKrQ7tNlwBrJZXRYk5jUhuWvF7GYzGguBZQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + '@esbuild/openbsd-x64@0.25.10': resolution: {integrity: sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==} engines: {node: '>=18'} @@ -1635,6 +1755,12 @@ packages: cpu: [x64] os: [openbsd] + '@esbuild/openbsd-x64@0.27.0': + resolution: {integrity: sha512-aCwlRdSNMNxkGGqQajMUza6uXzR/U0dIl1QmLjPtRbLOx3Gy3otfFu/VjATy4yQzo9yFDGTxYDo1FfAD9oRD2A==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + '@esbuild/openharmony-arm64@0.25.10': resolution: {integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==} engines: {node: '>=18'} @@ -1647,6 +1773,12 @@ packages: cpu: [arm64] os: [openharmony] + '@esbuild/openharmony-arm64@0.27.0': + resolution: {integrity: sha512-nyvsBccxNAsNYz2jVFYwEGuRRomqZ149A39SHWk4hV0jWxKM0hjBPm3AmdxcbHiFLbBSwG6SbpIcUbXjgyECfA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + '@esbuild/sunos-x64@0.25.10': resolution: {integrity: sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==} engines: {node: '>=18'} @@ -1665,6 +1797,12 @@ packages: cpu: [x64] os: [sunos] + '@esbuild/sunos-x64@0.27.0': + resolution: {integrity: sha512-Q1KY1iJafM+UX6CFEL+F4HRTgygmEW568YMqDA5UV97AuZSm21b7SXIrRJDwXWPzr8MGr75fUZPV67FdtMHlHA==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + '@esbuild/win32-arm64@0.25.10': resolution: {integrity: sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==} engines: {node: '>=18'} @@ -1683,6 +1821,12 @@ packages: cpu: [arm64] os: [win32] + '@esbuild/win32-arm64@0.27.0': + resolution: {integrity: sha512-W1eyGNi6d+8kOmZIwi/EDjrL9nxQIQ0MiGqe/AWc6+IaHloxHSGoeRgDRKHFISThLmsewZ5nHFvGFWdBYlgKPg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + '@esbuild/win32-ia32@0.25.10': resolution: {integrity: sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==} engines: {node: '>=18'} @@ -1701,6 +1845,12 @@ packages: cpu: [ia32] os: [win32] + '@esbuild/win32-ia32@0.27.0': + resolution: {integrity: sha512-30z1aKL9h22kQhilnYkORFYt+3wp7yZsHWus+wSKAJR8JtdfI76LJ4SBdMsCopTR3z/ORqVu5L1vtnHZWVj4cQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + '@esbuild/win32-x64@0.25.10': resolution: {integrity: sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==} engines: {node: '>=18'} @@ -1719,6 +1869,12 @@ packages: cpu: [x64] os: [win32] + '@esbuild/win32-x64@0.27.0': + resolution: {integrity: sha512-aIitBcjQeyOhMTImhLZmtxfdOcuNRpwlPNmlFKPcHQYPhEssw75Cl1TSXJXpMkzaua9FUetx/4OQKq7eJul5Cg==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + '@eslint-community/eslint-utils@4.9.0': resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -3660,6 +3816,10 @@ packages: resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==} engines: {node: '>=8'} + ci-info@4.3.1: + resolution: {integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==} + engines: {node: '>=8'} + cjs-module-lexer@2.1.0: resolution: {integrity: sha512-UX0OwmYRYQQetfrLEZeewIFFI+wSTofC+pMBLNuH3RUuu/xzG1oz84UCEDOSoQlN3fZ4+AzmV50ZYvGqkMh9yA==} @@ -4074,6 +4234,11 @@ packages: engines: {node: '>=18'} hasBin: true + esbuild-wasm@0.27.0: + resolution: {integrity: sha512-4XpLDOY4sOzqgiezPXDkHTn25cBA1MKN5OTotehoFR7/wTpSYCK76OA8rQfpiuz12G27JpGxxdh+/D9GcNl61w==} + engines: {node: '>=18'} + hasBin: true + esbuild@0.25.10: resolution: {integrity: sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==} engines: {node: '>=18'} @@ -4089,6 +4254,11 @@ packages: engines: {node: '>=18'} hasBin: true + esbuild@0.27.0: + resolution: {integrity: sha512-jd0f4NHbD6cALCyGElNpGAOtWxSq46l9X/sWB0Nzd5er4Kz2YTm+Vl0qKFT9KUJvD8+fiO8AvoHhFvEatfVixA==} + engines: {node: '>=18'} + hasBin: true + escalade@3.2.0: resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} engines: {node: '>=6'} @@ -4886,8 +5056,8 @@ packages: jsdom: optional: true - jest-preset-angular@15.0.2: - resolution: {integrity: sha512-XQNKL2BQllWF+eeiLuooMnL23IJ2s7yg7YfX52KhUMmwCTD0HlrU5RLzAgbP7xrsplsGWFlQwCe2kTJss/q0UQ==} + jest-preset-angular@15.0.3: + resolution: {integrity: sha512-W1OpeQ/tq72ZSGXRvUDktL02QBAWIM5SZPK4KI0zoXNvRGiGhNMbxuaFF7anLi27cojmWHm+TewJQI1Dsm9s6A==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} peerDependencies: '@angular/compiler-cli': '>=18.0.0 <21.0.0' @@ -6072,6 +6242,11 @@ packages: engines: {node: '>=10'} hasBin: true + semver@7.7.3: + resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} + engines: {node: '>=10'} + hasBin: true + send@0.19.0: resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} engines: {node: '>= 0.8.0'} @@ -6470,6 +6645,33 @@ packages: jest-util: optional: true + ts-jest@29.4.5: + resolution: {integrity: sha512-HO3GyiWn2qvTQA4kTgjDcXiMwYQt68a1Y8+JuLRVpdIzm+UOLSHgl/XqR4c6nzJkq5rOkjc02O2I7P7l/Yof0Q==} + engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@jest/transform': ^29.0.0 || ^30.0.0 + '@jest/types': ^29.0.0 || ^30.0.0 + babel-jest: ^29.0.0 || ^30.0.0 + esbuild: '*' + jest: ^29.0.0 || ^30.0.0 + jest-util: ^29.0.0 || ^30.0.0 + typescript: '>=4.3 <6' + peerDependenciesMeta: + '@babel/core': + optional: true + '@jest/transform': + optional: true + '@jest/types': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + jest-util: + optional: true + ts-node@10.9.2: resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} hasBin: true @@ -8494,6 +8696,9 @@ snapshots: '@esbuild/aix-ppc64@0.25.9': optional: true + '@esbuild/aix-ppc64@0.27.0': + optional: true + '@esbuild/android-arm64@0.25.10': optional: true @@ -8503,6 +8708,9 @@ snapshots: '@esbuild/android-arm64@0.25.9': optional: true + '@esbuild/android-arm64@0.27.0': + optional: true + '@esbuild/android-arm@0.25.10': optional: true @@ -8512,6 +8720,9 @@ snapshots: '@esbuild/android-arm@0.25.9': optional: true + '@esbuild/android-arm@0.27.0': + optional: true + '@esbuild/android-x64@0.25.10': optional: true @@ -8521,6 +8732,9 @@ snapshots: '@esbuild/android-x64@0.25.9': optional: true + '@esbuild/android-x64@0.27.0': + optional: true + '@esbuild/darwin-arm64@0.25.10': optional: true @@ -8530,6 +8744,9 @@ snapshots: '@esbuild/darwin-arm64@0.25.9': optional: true + '@esbuild/darwin-arm64@0.27.0': + optional: true + '@esbuild/darwin-x64@0.25.10': optional: true @@ -8539,6 +8756,9 @@ snapshots: '@esbuild/darwin-x64@0.25.9': optional: true + '@esbuild/darwin-x64@0.27.0': + optional: true + '@esbuild/freebsd-arm64@0.25.10': optional: true @@ -8548,6 +8768,9 @@ snapshots: '@esbuild/freebsd-arm64@0.25.9': optional: true + '@esbuild/freebsd-arm64@0.27.0': + optional: true + '@esbuild/freebsd-x64@0.25.10': optional: true @@ -8557,6 +8780,9 @@ snapshots: '@esbuild/freebsd-x64@0.25.9': optional: true + '@esbuild/freebsd-x64@0.27.0': + optional: true + '@esbuild/linux-arm64@0.25.10': optional: true @@ -8566,6 +8792,9 @@ snapshots: '@esbuild/linux-arm64@0.25.9': optional: true + '@esbuild/linux-arm64@0.27.0': + optional: true + '@esbuild/linux-arm@0.25.10': optional: true @@ -8575,6 +8804,9 @@ snapshots: '@esbuild/linux-arm@0.25.9': optional: true + '@esbuild/linux-arm@0.27.0': + optional: true + '@esbuild/linux-ia32@0.25.10': optional: true @@ -8584,6 +8816,9 @@ snapshots: '@esbuild/linux-ia32@0.25.9': optional: true + '@esbuild/linux-ia32@0.27.0': + optional: true + '@esbuild/linux-loong64@0.25.10': optional: true @@ -8593,6 +8828,9 @@ snapshots: '@esbuild/linux-loong64@0.25.9': optional: true + '@esbuild/linux-loong64@0.27.0': + optional: true + '@esbuild/linux-mips64el@0.25.10': optional: true @@ -8602,6 +8840,9 @@ snapshots: '@esbuild/linux-mips64el@0.25.9': optional: true + '@esbuild/linux-mips64el@0.27.0': + optional: true + '@esbuild/linux-ppc64@0.25.10': optional: true @@ -8611,6 +8852,9 @@ snapshots: '@esbuild/linux-ppc64@0.25.9': optional: true + '@esbuild/linux-ppc64@0.27.0': + optional: true + '@esbuild/linux-riscv64@0.25.10': optional: true @@ -8620,6 +8864,9 @@ snapshots: '@esbuild/linux-riscv64@0.25.9': optional: true + '@esbuild/linux-riscv64@0.27.0': + optional: true + '@esbuild/linux-s390x@0.25.10': optional: true @@ -8629,6 +8876,9 @@ snapshots: '@esbuild/linux-s390x@0.25.9': optional: true + '@esbuild/linux-s390x@0.27.0': + optional: true + '@esbuild/linux-x64@0.25.10': optional: true @@ -8638,6 +8888,9 @@ snapshots: '@esbuild/linux-x64@0.25.9': optional: true + '@esbuild/linux-x64@0.27.0': + optional: true + '@esbuild/netbsd-arm64@0.25.10': optional: true @@ -8647,6 +8900,9 @@ snapshots: '@esbuild/netbsd-arm64@0.25.9': optional: true + '@esbuild/netbsd-arm64@0.27.0': + optional: true + '@esbuild/netbsd-x64@0.25.10': optional: true @@ -8656,6 +8912,9 @@ snapshots: '@esbuild/netbsd-x64@0.25.9': optional: true + '@esbuild/netbsd-x64@0.27.0': + optional: true + '@esbuild/openbsd-arm64@0.25.10': optional: true @@ -8665,6 +8924,9 @@ snapshots: '@esbuild/openbsd-arm64@0.25.9': optional: true + '@esbuild/openbsd-arm64@0.27.0': + optional: true + '@esbuild/openbsd-x64@0.25.10': optional: true @@ -8674,12 +8936,18 @@ snapshots: '@esbuild/openbsd-x64@0.25.9': optional: true + '@esbuild/openbsd-x64@0.27.0': + optional: true + '@esbuild/openharmony-arm64@0.25.10': optional: true '@esbuild/openharmony-arm64@0.25.9': optional: true + '@esbuild/openharmony-arm64@0.27.0': + optional: true + '@esbuild/sunos-x64@0.25.10': optional: true @@ -8689,6 +8957,9 @@ snapshots: '@esbuild/sunos-x64@0.25.9': optional: true + '@esbuild/sunos-x64@0.27.0': + optional: true + '@esbuild/win32-arm64@0.25.10': optional: true @@ -8698,6 +8969,9 @@ snapshots: '@esbuild/win32-arm64@0.25.9': optional: true + '@esbuild/win32-arm64@0.27.0': + optional: true + '@esbuild/win32-ia32@0.25.10': optional: true @@ -8707,6 +8981,9 @@ snapshots: '@esbuild/win32-ia32@0.25.9': optional: true + '@esbuild/win32-ia32@0.27.0': + optional: true + '@esbuild/win32-x64@0.25.10': optional: true @@ -8716,6 +8993,9 @@ snapshots: '@esbuild/win32-x64@0.25.9': optional: true + '@esbuild/win32-x64@0.27.0': + optional: true + '@eslint-community/eslint-utils@4.9.0(eslint@9.36.0(jiti@1.21.7))': dependencies: eslint: 9.36.0(jiti@1.21.7) @@ -10732,6 +11012,8 @@ snapshots: ci-info@4.3.0: {} + ci-info@4.3.1: {} + cjs-module-lexer@2.1.0: {} cli-cursor@5.0.0: @@ -11087,6 +11369,8 @@ snapshots: esbuild-wasm@0.25.5: {} + esbuild-wasm@0.27.0: {} + esbuild@0.25.10: optionalDependencies: '@esbuild/aix-ppc64': 0.25.10 @@ -11174,6 +11458,36 @@ snapshots: '@esbuild/win32-ia32': 0.25.9 '@esbuild/win32-x64': 0.25.9 + esbuild@0.27.0: + optionalDependencies: + '@esbuild/aix-ppc64': 0.27.0 + '@esbuild/android-arm': 0.27.0 + '@esbuild/android-arm64': 0.27.0 + '@esbuild/android-x64': 0.27.0 + '@esbuild/darwin-arm64': 0.27.0 + '@esbuild/darwin-x64': 0.27.0 + '@esbuild/freebsd-arm64': 0.27.0 + '@esbuild/freebsd-x64': 0.27.0 + '@esbuild/linux-arm': 0.27.0 + '@esbuild/linux-arm64': 0.27.0 + '@esbuild/linux-ia32': 0.27.0 + '@esbuild/linux-loong64': 0.27.0 + '@esbuild/linux-mips64el': 0.27.0 + '@esbuild/linux-ppc64': 0.27.0 + '@esbuild/linux-riscv64': 0.27.0 + '@esbuild/linux-s390x': 0.27.0 + '@esbuild/linux-x64': 0.27.0 + '@esbuild/netbsd-arm64': 0.27.0 + '@esbuild/netbsd-x64': 0.27.0 + '@esbuild/openbsd-arm64': 0.27.0 + '@esbuild/openbsd-x64': 0.27.0 + '@esbuild/openharmony-arm64': 0.27.0 + '@esbuild/sunos-x64': 0.27.0 + '@esbuild/win32-arm64': 0.27.0 + '@esbuild/win32-ia32': 0.27.0 + '@esbuild/win32-x64': 0.27.0 + optional: true + escalade@3.2.0: {} escape-html@1.0.3: {} @@ -12184,7 +12498,7 @@ snapshots: - supports-color - utf-8-validate - jest-preset-angular@15.0.2(53f1eecb3c13a66432ac1820fed37a4d): + jest-preset-angular@15.0.3(53f1eecb3c13a66432ac1820fed37a4d): dependencies: '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) @@ -12192,15 +12506,15 @@ snapshots: '@angular/platform-browser-dynamic': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))) '@jest/environment-jsdom-abstract': 30.2.0(canvas@3.0.0)(jsdom@26.1.0(canvas@3.0.0)) bs-logger: 0.2.6 - esbuild-wasm: 0.25.10 + esbuild-wasm: 0.27.0 jest: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) jest-util: 30.2.0 jsdom: 26.1.0(canvas@3.0.0) pretty-format: 30.2.0 - ts-jest: 29.4.4(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.25.10)(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3) + ts-jest: 29.4.5(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.27.0)(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3) typescript: 5.8.3 optionalDependencies: - esbuild: 0.25.10 + esbuild: 0.27.0 transitivePeerDependencies: - '@babel/core' - '@jest/transform' @@ -12303,7 +12617,7 @@ snapshots: jest-message-util: 30.2.0 jest-util: 30.2.0 pretty-format: 30.2.0 - semver: 7.7.2 + semver: 7.7.3 synckit: 0.11.11 transitivePeerDependencies: - supports-color @@ -12322,7 +12636,7 @@ snapshots: '@jest/types': 30.0.5 '@types/node': 24.10.1 chalk: 4.1.2 - ci-info: 4.3.0 + ci-info: 4.3.1 graceful-fs: 4.2.11 picomatch: 4.0.3 @@ -12331,7 +12645,7 @@ snapshots: '@jest/types': 30.2.0 '@types/node': 24.10.1 chalk: 4.1.2 - ci-info: 4.3.0 + ci-info: 4.3.1 graceful-fs: 4.2.11 picomatch: 4.0.3 @@ -12649,7 +12963,7 @@ snapshots: make-dir@4.0.0: dependencies: - semver: 7.7.2 + semver: 7.7.3 make-error@1.3.6: {} @@ -12904,7 +13218,7 @@ snapshots: node-abi@3.71.0: dependencies: - semver: 7.7.2 + semver: 7.7.3 optional: true node-addon-api@6.1.0: @@ -13625,6 +13939,8 @@ snapshots: semver@7.7.2: {} + semver@7.7.3: {} + send@0.19.0: dependencies: debug: 2.6.9 @@ -14106,7 +14422,7 @@ snapshots: esbuild: 0.25.10 jest-util: 29.7.0 - ts-jest@29.4.4(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.25.10)(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3): + ts-jest@29.4.5(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.27.0)(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -14115,7 +14431,7 @@ snapshots: json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.7.2 + semver: 7.7.3 type-fest: 4.41.0 typescript: 5.8.3 yargs-parser: 21.1.1 @@ -14124,7 +14440,7 @@ snapshots: '@jest/transform': 30.2.0 '@jest/types': 30.2.0 babel-jest: 30.2.0(@babel/core@7.28.4) - esbuild: 0.25.10 + esbuild: 0.27.0 jest-util: 30.2.0 ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3): From 20d921142e677e3789274078c33d225f8ef1744d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 03:41:15 +0000 Subject: [PATCH 087/133] Chore(deps-dev): Bump the frontend-eslint-dependencies group (#11262) Bumps the frontend-eslint-dependencies group in /src-ui with 4 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser), [@typescript-eslint/utils](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/utils) and [eslint](https://github.com/eslint/eslint). Updates `@typescript-eslint/eslint-plugin` from 8.45.0 to 8.46.2 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.2/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 8.45.0 to 8.46.2 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.2/packages/parser) Updates `@typescript-eslint/utils` from 8.45.0 to 8.46.2 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/utils/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.2/packages/utils) Updates `eslint` from 9.36.0 to 9.39.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/compare/v9.36.0...v9.39.0) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-version: 8.46.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-eslint-dependencies - dependency-name: "@typescript-eslint/parser" dependency-version: 8.46.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-eslint-dependencies - dependency-name: "@typescript-eslint/utils" dependency-version: 8.46.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-eslint-dependencies - dependency-name: eslint dependency-version: 9.39.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-eslint-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src-ui/package.json | 8 +- src-ui/pnpm-lock.yaml | 289 +++++++++++++++++++++--------------------- 2 files changed, 149 insertions(+), 148 deletions(-) diff --git a/src-ui/package.json b/src-ui/package.json index e477d62a8..c722b4955 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -56,10 +56,10 @@ "@playwright/test": "^1.55.1", "@types/jest": "^30.0.0", "@types/node": "^24.10.1", - "@typescript-eslint/eslint-plugin": "^8.45.0", - "@typescript-eslint/parser": "^8.45.0", - "@typescript-eslint/utils": "^8.45.0", - "eslint": "^9.36.0", + "@typescript-eslint/eslint-plugin": "^8.47.0", + "@typescript-eslint/parser": "^8.47.0", + "@typescript-eslint/utils": "^8.47.0", + "eslint": "^9.39.1", "jest": "30.2.0", "jest-environment-jsdom": "^30.2.0", "jest-junit": "^16.0.0", diff --git a/src-ui/pnpm-lock.yaml b/src-ui/pnpm-lock.yaml index 8f188e786..8c5cc2bdf 100644 --- a/src-ui/pnpm-lock.yaml +++ b/src-ui/pnpm-lock.yaml @@ -104,19 +104,19 @@ importers: version: 20.3.3(chokidar@4.0.3) '@angular-eslint/builder': specifier: 20.3.0 - version: 20.3.0(chokidar@4.0.3)(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) + version: 20.3.0(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@angular-eslint/eslint-plugin': specifier: 20.3.0 - version: 20.3.0(@typescript-eslint/utils@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) + version: 20.3.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@angular-eslint/eslint-plugin-template': specifier: 20.3.0 - version: 20.3.0(@angular-eslint/template-parser@20.3.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.45.0)(@typescript-eslint/utils@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) + version: 20.3.0(@angular-eslint/template-parser@20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@angular-eslint/schematics': specifier: 20.3.0 - version: 20.3.0(@angular-eslint/template-parser@20.3.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.45.0)(@typescript-eslint/utils@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) + version: 20.3.0(@angular-eslint/template-parser@20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@angular-eslint/template-parser': specifier: 20.3.0 - version: 20.3.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) + version: 20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@angular/build': specifier: ^20.3.3 version: 20.3.3(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) @@ -139,17 +139,17 @@ importers: specifier: ^24.10.1 version: 24.10.1 '@typescript-eslint/eslint-plugin': - specifier: ^8.45.0 - version: 8.45.0(@typescript-eslint/parser@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) + specifier: ^8.47.0 + version: 8.47.0(@typescript-eslint/parser@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@typescript-eslint/parser': - specifier: ^8.45.0 - version: 8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) + specifier: ^8.47.0 + version: 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@typescript-eslint/utils': - specifier: ^8.45.0 - version: 8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) + specifier: ^8.47.0 + version: 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) eslint: - specifier: ^9.36.0 - version: 9.36.0(jiti@1.21.7) + specifier: ^9.39.1 + version: 9.39.1(jiti@1.21.7) jest: specifier: 30.2.0 version: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) @@ -1881,36 +1881,36 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint-community/regexpp@4.12.1': - resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + '@eslint-community/regexpp@4.12.2': + resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - '@eslint/config-array@0.21.0': - resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==} + '@eslint/config-array@0.21.1': + resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/config-helpers@0.3.1': - resolution: {integrity: sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==} + '@eslint/config-helpers@0.4.2': + resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/core@0.15.2': - resolution: {integrity: sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==} + '@eslint/core@0.17.0': + resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/eslintrc@3.3.1': resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.36.0': - resolution: {integrity: sha512-uhCbYtYynH30iZErszX78U+nR3pJU3RHGQ57NXy5QupD4SBVwDeU8TNBy+MjMngc1UyIW9noKqsRqfjQTBU2dw==} + '@eslint/js@9.39.1': + resolution: {integrity: sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/object-schema@2.1.6': - resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} + '@eslint/object-schema@2.1.7': + resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/plugin-kit@0.3.5': - resolution: {integrity: sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==} + '@eslint/plugin-kit@0.4.1': + resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@fastify/busboy@2.1.1': @@ -3218,63 +3218,63 @@ packages: '@types/yargs@17.0.33': resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} - '@typescript-eslint/eslint-plugin@8.45.0': - resolution: {integrity: sha512-HC3y9CVuevvWCl/oyZuI47dOeDF9ztdMEfMH8/DW/Mhwa9cCLnK1oD7JoTVGW/u7kFzNZUKUoyJEqkaJh5y3Wg==} + '@typescript-eslint/eslint-plugin@8.47.0': + resolution: {integrity: sha512-fe0rz9WJQ5t2iaLfdbDc9T80GJy0AeO453q8C3YCilnGozvOyCG5t+EZtg7j7D88+c3FipfP/x+wzGnh1xp8ZA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.45.0 + '@typescript-eslint/parser': ^8.47.0 eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/parser@8.45.0': - resolution: {integrity: sha512-TGf22kon8KW+DeKaUmOibKWktRY8b2NSAZNdtWh798COm1NWx8+xJ6iFBtk3IvLdv6+LGLJLRlyhrhEDZWargQ==} + '@typescript-eslint/parser@8.47.0': + resolution: {integrity: sha512-lJi3PfxVmo0AkEY93ecfN+r8SofEqZNGByvHAI3GBLrvt1Cw6H5k1IM02nSzu0RfUafr2EvFSw0wAsZgubNplQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/project-service@8.45.0': - resolution: {integrity: sha512-3pcVHwMG/iA8afdGLMuTibGR7pDsn9RjDev6CCB+naRsSYs2pns5QbinF4Xqw6YC/Sj3lMrm/Im0eMfaa61WUg==} + '@typescript-eslint/project-service@8.47.0': + resolution: {integrity: sha512-2X4BX8hUeB5JcA1TQJ7GjcgulXQ+5UkNb0DL8gHsHUHdFoiCTJoYLTpib3LtSDPZsRET5ygN4qqIWrHyYIKERA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/scope-manager@8.45.0': - resolution: {integrity: sha512-clmm8XSNj/1dGvJeO6VGH7EUSeA0FMs+5au/u3lrA3KfG8iJ4u8ym9/j2tTEoacAffdW1TVUzXO30W1JTJS7dA==} + '@typescript-eslint/scope-manager@8.47.0': + resolution: {integrity: sha512-a0TTJk4HXMkfpFkL9/WaGTNuv7JWfFTQFJd6zS9dVAjKsojmv9HT55xzbEpnZoY+VUb+YXLMp+ihMLz/UlZfDg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.45.0': - resolution: {integrity: sha512-aFdr+c37sc+jqNMGhH+ajxPXwjv9UtFZk79k8pLoJ6p4y0snmYpPA52GuWHgt2ZF4gRRW6odsEj41uZLojDt5w==} + '@typescript-eslint/tsconfig-utils@8.47.0': + resolution: {integrity: sha512-ybUAvjy4ZCL11uryalkKxuT3w3sXJAuWhOoGS3T/Wu+iUu1tGJmk5ytSY8gbdACNARmcYEB0COksD2j6hfGK2g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/type-utils@8.45.0': - resolution: {integrity: sha512-bpjepLlHceKgyMEPglAeULX1vixJDgaKocp0RVJ5u4wLJIMNuKtUXIczpJCPcn2waII0yuvks/5m5/h3ZQKs0A==} + '@typescript-eslint/type-utils@8.47.0': + resolution: {integrity: sha512-QC9RiCmZ2HmIdCEvhd1aJELBlD93ErziOXXlHEZyuBo3tBiAZieya0HLIxp+DoDWlsQqDawyKuNEhORyku+P8A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/types@8.45.0': - resolution: {integrity: sha512-WugXLuOIq67BMgQInIxxnsSyRLFxdkJEJu8r4ngLR56q/4Q5LrbfkFRH27vMTjxEK8Pyz7QfzuZe/G15qQnVRA==} + '@typescript-eslint/types@8.47.0': + resolution: {integrity: sha512-nHAE6bMKsizhA2uuYZbEbmp5z2UpffNrPEqiKIeN7VsV6UY/roxanWfoRrf6x/k9+Obf+GQdkm0nPU+vnMXo9A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.45.0': - resolution: {integrity: sha512-GfE1NfVbLam6XQ0LcERKwdTTPlLvHvXXhOeUGC1OXi4eQBoyy1iVsW+uzJ/J9jtCz6/7GCQ9MtrQ0fml/jWCnA==} + '@typescript-eslint/typescript-estree@8.47.0': + resolution: {integrity: sha512-k6ti9UepJf5NpzCjH31hQNLHQWupTRPhZ+KFF8WtTuTpy7uHPfeg2NM7cP27aCGajoEplxJDFVCEm9TGPYyiVg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/utils@8.45.0': - resolution: {integrity: sha512-bxi1ht+tLYg4+XV2knz/F7RVhU0k6VrSMc9sb8DQ6fyCTrGQLHfo7lDtN0QJjZjKkLA2ThrKuCdHEvLReqtIGg==} + '@typescript-eslint/utils@8.47.0': + resolution: {integrity: sha512-g7XrNf25iL4TJOiPqatNuaChyqt49a/onq5YsJ9+hXeugK+41LVg7AxikMfM02PC6jbNtZLCJj6AUcQXJS/jGQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/visitor-keys@8.45.0': - resolution: {integrity: sha512-qsaFBA3e09MIDAGFUrTk+dzqtfv1XPVz8t8d1f0ybTzrCY7BKiMC5cjrl1O/P7UmHsNyW90EYSkU/ZWpmXelag==} + '@typescript-eslint/visitor-keys@8.47.0': + resolution: {integrity: sha512-SIV3/6eftCy1bNzCQoPmbWsRLujS8t5iDIZ4spZOBHqrM+yfX2ogg8Tt3PDTAVKw3sSCiUgg30uOAvK2r9zGjQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.3.0': @@ -4295,8 +4295,8 @@ packages: resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.36.0: - resolution: {integrity: sha512-hB4FIzXovouYzwzECDcUkJ4OcfOEkXTv2zRY6B9bkwjx/cprAq0uvm1nl7zvQ0/TsUk0zQiN4uPfJpB9m+rPMQ==} + eslint@9.39.1: + resolution: {integrity: sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true peerDependencies: @@ -5140,12 +5140,12 @@ packages: js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + js-yaml@3.14.2: + resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==} hasBin: true - js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + js-yaml@4.1.1: + resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==} hasBin: true jsdom@20.0.3: @@ -5437,8 +5437,8 @@ packages: minimalistic-assert@1.0.1: resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} - minimatch@10.0.3: - resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==} + minimatch@10.1.1: + resolution: {integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==} engines: {node: 20 || >=22} minimatch@3.1.2: @@ -7525,44 +7525,44 @@ snapshots: transitivePeerDependencies: - chokidar - '@angular-eslint/builder@20.3.0(chokidar@4.0.3)(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/builder@20.3.0(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: '@angular-devkit/architect': 0.2003.3(chokidar@4.0.3) '@angular-devkit/core': 20.3.3(chokidar@4.0.3) - eslint: 9.36.0(jiti@1.21.7) + eslint: 9.39.1(jiti@1.21.7) typescript: 5.8.3 transitivePeerDependencies: - chokidar '@angular-eslint/bundled-angular-compiler@20.3.0': {} - '@angular-eslint/eslint-plugin-template@20.3.0(@angular-eslint/template-parser@20.3.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.45.0)(@typescript-eslint/utils@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/eslint-plugin-template@20.3.0(@angular-eslint/template-parser@20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: '@angular-eslint/bundled-angular-compiler': 20.3.0 - '@angular-eslint/template-parser': 20.3.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) - '@angular-eslint/utils': 20.3.0(@typescript-eslint/utils@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) - '@typescript-eslint/types': 8.45.0 - '@typescript-eslint/utils': 8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) + '@angular-eslint/template-parser': 20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@angular-eslint/utils': 20.3.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@typescript-eslint/types': 8.47.0 + '@typescript-eslint/utils': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) aria-query: 5.3.2 axobject-query: 4.1.0 - eslint: 9.36.0(jiti@1.21.7) + eslint: 9.39.1(jiti@1.21.7) typescript: 5.8.3 - '@angular-eslint/eslint-plugin@20.3.0(@typescript-eslint/utils@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/eslint-plugin@20.3.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: '@angular-eslint/bundled-angular-compiler': 20.3.0 - '@angular-eslint/utils': 20.3.0(@typescript-eslint/utils@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) - '@typescript-eslint/utils': 8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) - eslint: 9.36.0(jiti@1.21.7) + '@angular-eslint/utils': 20.3.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@typescript-eslint/utils': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + eslint: 9.39.1(jiti@1.21.7) ts-api-utils: 2.1.0(typescript@5.8.3) typescript: 5.8.3 - '@angular-eslint/schematics@20.3.0(@angular-eslint/template-parser@20.3.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.45.0)(@typescript-eslint/utils@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/schematics@20.3.0(@angular-eslint/template-parser@20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: '@angular-devkit/core': 20.3.3(chokidar@4.0.3) '@angular-devkit/schematics': 20.3.3(chokidar@4.0.3) - '@angular-eslint/eslint-plugin': 20.3.0(@typescript-eslint/utils@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) - '@angular-eslint/eslint-plugin-template': 20.3.0(@angular-eslint/template-parser@20.3.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.45.0)(@typescript-eslint/utils@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) + '@angular-eslint/eslint-plugin': 20.3.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@angular-eslint/eslint-plugin-template': 20.3.0(@angular-eslint/template-parser@20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) ignore: 7.0.5 semver: 7.7.2 strip-json-comments: 3.1.1 @@ -7574,18 +7574,18 @@ snapshots: - eslint - typescript - '@angular-eslint/template-parser@20.3.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/template-parser@20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: '@angular-eslint/bundled-angular-compiler': 20.3.0 - eslint: 9.36.0(jiti@1.21.7) + eslint: 9.39.1(jiti@1.21.7) eslint-scope: 8.4.0 typescript: 5.8.3 - '@angular-eslint/utils@20.3.0(@typescript-eslint/utils@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/utils@20.3.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: '@angular-eslint/bundled-angular-compiler': 20.3.0 - '@typescript-eslint/utils': 8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) - eslint: 9.36.0(jiti@1.21.7) + '@typescript-eslint/utils': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + eslint: 9.39.1(jiti@1.21.7) typescript: 5.8.3 '@angular/build@20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0)': @@ -8996,24 +8996,26 @@ snapshots: '@esbuild/win32-x64@0.27.0': optional: true - '@eslint-community/eslint-utils@4.9.0(eslint@9.36.0(jiti@1.21.7))': + '@eslint-community/eslint-utils@4.9.0(eslint@9.39.1(jiti@1.21.7))': dependencies: - eslint: 9.36.0(jiti@1.21.7) + eslint: 9.39.1(jiti@1.21.7) eslint-visitor-keys: 3.4.3 - '@eslint-community/regexpp@4.12.1': {} + '@eslint-community/regexpp@4.12.2': {} - '@eslint/config-array@0.21.0': + '@eslint/config-array@0.21.1': dependencies: - '@eslint/object-schema': 2.1.6 + '@eslint/object-schema': 2.1.7 debug: 4.4.3 minimatch: 3.1.2 transitivePeerDependencies: - supports-color - '@eslint/config-helpers@0.3.1': {} + '@eslint/config-helpers@0.4.2': + dependencies: + '@eslint/core': 0.17.0 - '@eslint/core@0.15.2': + '@eslint/core@0.17.0': dependencies: '@types/json-schema': 7.0.15 @@ -9025,19 +9027,19 @@ snapshots: globals: 14.0.0 ignore: 5.3.2 import-fresh: 3.3.1 - js-yaml: 4.1.0 + js-yaml: 4.1.1 minimatch: 3.1.2 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color - '@eslint/js@9.36.0': {} + '@eslint/js@9.39.1': {} - '@eslint/object-schema@2.1.6': {} + '@eslint/object-schema@2.1.7': {} - '@eslint/plugin-kit@0.3.5': + '@eslint/plugin-kit@0.4.1': dependencies: - '@eslint/core': 0.15.2 + '@eslint/core': 0.17.0 levn: 0.4.1 '@fastify/busboy@2.1.1': {} @@ -9216,7 +9218,7 @@ snapshots: camelcase: 5.3.1 find-up: 4.1.0 get-package-type: 0.1.0 - js-yaml: 3.14.1 + js-yaml: 3.14.2 resolve-from: 5.0.0 '@istanbuljs/schema@0.1.3': {} @@ -10326,15 +10328,15 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.45.0(@typescript-eslint/parser@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3))(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3)': + '@typescript-eslint/eslint-plugin@8.47.0(@typescript-eslint/parser@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: - '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.45.0 - '@typescript-eslint/type-utils': 8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) - '@typescript-eslint/utils': 8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.45.0 - eslint: 9.36.0(jiti@1.21.7) + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.47.0 + '@typescript-eslint/type-utils': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@typescript-eslint/utils': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.47.0 + eslint: 9.39.1(jiti@1.21.7) graphemer: 1.4.0 ignore: 7.0.5 natural-compare: 1.4.0 @@ -10343,80 +10345,80 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3)': + '@typescript-eslint/parser@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: - '@typescript-eslint/scope-manager': 8.45.0 - '@typescript-eslint/types': 8.45.0 - '@typescript-eslint/typescript-estree': 8.45.0(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.45.0 + '@typescript-eslint/scope-manager': 8.47.0 + '@typescript-eslint/types': 8.47.0 + '@typescript-eslint/typescript-estree': 8.47.0(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.47.0 debug: 4.4.3 - eslint: 9.36.0(jiti@1.21.7) + eslint: 9.39.1(jiti@1.21.7) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.45.0(typescript@5.8.3)': + '@typescript-eslint/project-service@8.47.0(typescript@5.8.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.45.0(typescript@5.8.3) - '@typescript-eslint/types': 8.45.0 + '@typescript-eslint/tsconfig-utils': 8.47.0(typescript@5.8.3) + '@typescript-eslint/types': 8.47.0 debug: 4.4.3 typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.45.0': + '@typescript-eslint/scope-manager@8.47.0': dependencies: - '@typescript-eslint/types': 8.45.0 - '@typescript-eslint/visitor-keys': 8.45.0 + '@typescript-eslint/types': 8.47.0 + '@typescript-eslint/visitor-keys': 8.47.0 - '@typescript-eslint/tsconfig-utils@8.45.0(typescript@5.8.3)': + '@typescript-eslint/tsconfig-utils@8.47.0(typescript@5.8.3)': dependencies: typescript: 5.8.3 - '@typescript-eslint/type-utils@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3)': + '@typescript-eslint/type-utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: - '@typescript-eslint/types': 8.45.0 - '@typescript-eslint/typescript-estree': 8.45.0(typescript@5.8.3) - '@typescript-eslint/utils': 8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3) + '@typescript-eslint/types': 8.47.0 + '@typescript-eslint/typescript-estree': 8.47.0(typescript@5.8.3) + '@typescript-eslint/utils': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) debug: 4.4.3 - eslint: 9.36.0(jiti@1.21.7) + eslint: 9.39.1(jiti@1.21.7) ts-api-utils: 2.1.0(typescript@5.8.3) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.45.0': {} + '@typescript-eslint/types@8.47.0': {} - '@typescript-eslint/typescript-estree@8.45.0(typescript@5.8.3)': + '@typescript-eslint/typescript-estree@8.47.0(typescript@5.8.3)': dependencies: - '@typescript-eslint/project-service': 8.45.0(typescript@5.8.3) - '@typescript-eslint/tsconfig-utils': 8.45.0(typescript@5.8.3) - '@typescript-eslint/types': 8.45.0 - '@typescript-eslint/visitor-keys': 8.45.0 + '@typescript-eslint/project-service': 8.47.0(typescript@5.8.3) + '@typescript-eslint/tsconfig-utils': 8.47.0(typescript@5.8.3) + '@typescript-eslint/types': 8.47.0 + '@typescript-eslint/visitor-keys': 8.47.0 debug: 4.4.3 fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 - semver: 7.7.2 + semver: 7.7.3 ts-api-utils: 2.1.0(typescript@5.8.3) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.45.0(eslint@9.36.0(jiti@1.21.7))(typescript@5.8.3)': + '@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@1.21.7)) - '@typescript-eslint/scope-manager': 8.45.0 - '@typescript-eslint/types': 8.45.0 - '@typescript-eslint/typescript-estree': 8.45.0(typescript@5.8.3) - eslint: 9.36.0(jiti@1.21.7) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@1.21.7)) + '@typescript-eslint/scope-manager': 8.47.0 + '@typescript-eslint/types': 8.47.0 + '@typescript-eslint/typescript-estree': 8.47.0(typescript@5.8.3) + eslint: 9.39.1(jiti@1.21.7) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.45.0': + '@typescript-eslint/visitor-keys@8.47.0': dependencies: - '@typescript-eslint/types': 8.45.0 + '@typescript-eslint/types': 8.47.0 eslint-visitor-keys: 4.2.1 '@ungap/structured-clone@1.3.0': {} @@ -11135,7 +11137,7 @@ snapshots: dependencies: env-paths: 2.2.1 import-fresh: 3.3.1 - js-yaml: 4.1.0 + js-yaml: 4.1.1 parse-json: 5.2.0 optionalDependencies: typescript: 5.8.3 @@ -11518,21 +11520,20 @@ snapshots: eslint-visitor-keys@4.2.1: {} - eslint@9.36.0(jiti@1.21.7): + eslint@9.39.1(jiti@1.21.7): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@1.21.7)) - '@eslint-community/regexpp': 4.12.1 - '@eslint/config-array': 0.21.0 - '@eslint/config-helpers': 0.3.1 - '@eslint/core': 0.15.2 + '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@1.21.7)) + '@eslint-community/regexpp': 4.12.2 + '@eslint/config-array': 0.21.1 + '@eslint/config-helpers': 0.4.2 + '@eslint/core': 0.17.0 '@eslint/eslintrc': 3.3.1 - '@eslint/js': 9.36.0 - '@eslint/plugin-kit': 0.3.5 + '@eslint/js': 9.39.1 + '@eslint/plugin-kit': 0.4.1 '@humanfs/node': 0.16.7 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.4.3 '@types/estree': 1.0.8 - '@types/json-schema': 7.0.15 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 @@ -12063,7 +12064,7 @@ snapshots: ignore-walk@8.0.0: dependencies: - minimatch: 10.0.3 + minimatch: 10.1.1 ignore@5.3.2: {} @@ -12705,12 +12706,12 @@ snapshots: js-tokens@4.0.0: {} - js-yaml@3.14.1: + js-yaml@3.14.2: dependencies: argparse: 1.0.10 esprima: 4.0.1 - js-yaml@4.1.0: + js-yaml@4.1.1: dependencies: argparse: 2.0.1 @@ -13051,7 +13052,7 @@ snapshots: minimalistic-assert@1.0.1: {} - minimatch@10.0.3: + minimatch@10.1.1: dependencies: '@isaacs/brace-expansion': 5.0.0 From 22a47a28dcf2d20b5f4d1cc20bdc6c7e475cf160 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 03:57:10 +0000 Subject: [PATCH 088/133] Chore(deps-dev): Bump webpack from 5.102.0 to 5.102.1 in /src-ui (#11264) Bumps [webpack](https://github.com/webpack/webpack) from 5.102.0 to 5.102.1. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v5.102.0...v5.102.1) --- updated-dependencies: - dependency-name: webpack dependency-version: 5.102.1 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src-ui/package.json | 2 +- src-ui/pnpm-lock.yaml | 160 +++++++++++++++++++++++++++--------------- 2 files changed, 104 insertions(+), 58 deletions(-) diff --git a/src-ui/package.json b/src-ui/package.json index c722b4955..acd63e65e 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -68,7 +68,7 @@ "prettier-plugin-organize-imports": "^4.3.0", "ts-node": "~10.9.1", "typescript": "^5.8.3", - "webpack": "^5.102.0" + "webpack": "^5.102.1" }, "packageManager": "pnpm@10.17.1", "pnpm": { diff --git a/src-ui/pnpm-lock.yaml b/src-ui/pnpm-lock.yaml index 8c5cc2bdf..45c75f5fb 100644 --- a/src-ui/pnpm-lock.yaml +++ b/src-ui/pnpm-lock.yaml @@ -128,7 +128,7 @@ importers: version: 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) '@codecov/webpack-plugin': specifier: ^1.9.1 - version: 1.9.1(webpack@5.102.0) + version: 1.9.1(webpack@5.102.1) '@playwright/test': specifier: ^1.55.1 version: 1.55.1 @@ -175,8 +175,8 @@ importers: specifier: ^5.8.3 version: 5.8.3 webpack: - specifier: ^5.102.0 - version: 5.102.0 + specifier: ^5.102.1 + version: 5.102.1 packages: @@ -3660,6 +3660,10 @@ packages: resolution: {integrity: sha512-uLfgBi+7IBNay8ECBO2mVMGZAc1VgZWEChxm4lv+TobGdG82LnXMjuNGo/BSSZZL4UmkWhxEHP2f5ziLNwGWMA==} hasBin: true + baseline-browser-mapping@2.8.29: + resolution: {integrity: sha512-sXdt2elaVnhpDNRDz+1BDx1JQoJRuNk7oVlAlbGiFkLikHCAQiccexF/9e91zVi6RCgqspl04aP+6Cnl9zRLrA==} + hasBin: true + batch@0.6.1: resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} @@ -3718,6 +3722,11 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true + browserslist@4.28.0: + resolution: {integrity: sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + bs-logger@0.2.6: resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} engines: {node: '>= 6'} @@ -3766,6 +3775,9 @@ packages: caniuse-lite@1.0.30001746: resolution: {integrity: sha512-eA7Ys/DGw+pnkWWSE/id29f2IcPHVoE8wxtvE5JdvD2V28VTDPy1yEeo11Guz0sJ4ZeGRcm3uaTcAqK1LXaphA==} + caniuse-lite@1.0.30001755: + resolution: {integrity: sha512-44V+Jm6ctPj7R52Na4TLi3Zri4dWUljJd+RDm+j8LtNCc/ihLCT+X1TzoOAkRETEWqjuLnh9581Tl80FvK7jVA==} + canvas@3.0.0: resolution: {integrity: sha512-NtcIBY88FjymQy+g2g5qnuP5IslrbWCQ3A6rSr1PeuYxVRapRZ3BZCrDyAakvI6CuDYidgZaf55ygulFVwROdg==} engines: {node: ^18.12.0 || >= 20.9.0} @@ -4148,6 +4160,9 @@ packages: electron-to-chromium@1.5.228: resolution: {integrity: sha512-nxkiyuqAn4MJ1QbobwqJILiDtu/jk14hEAWaMiJmNPh1Z+jqoFlBFZjdXwLWGeVSeu9hGLg6+2G9yJaW8rBIFA==} + electron-to-chromium@1.5.255: + resolution: {integrity: sha512-Z9oIp4HrFF/cZkDPMpz2XSuVpc1THDpT4dlmATFlJUIBVCy9Vap5/rIXsASP1CscBacBqhabwh8vLctqBwEerQ==} + emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} engines: {node: '>=12'} @@ -5273,8 +5288,8 @@ packages: resolution: {integrity: sha512-nwVGUfTBUwJKXd6lRV8pFNfnrCC1+l49ESJRM19t/tFb/97QfJEixe5DYRvug5JO7DSFKoKaVy7oGMt5rVqZvg==} hasBin: true - loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} + loader-runner@4.3.1: + resolution: {integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==} engines: {node: '>=6.11.5'} loader-utils@2.0.4: @@ -5636,6 +5651,9 @@ packages: node-releases@2.0.21: resolution: {integrity: sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==} + node-releases@2.0.27: + resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==} + nopt@8.1.0: resolution: {integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==} engines: {node: ^18.17.0 || >=20.5.0} @@ -6218,8 +6236,8 @@ packages: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} engines: {node: '>=v12.22.7'} - schema-utils@4.3.2: - resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==} + schema-utils@4.3.3: + resolution: {integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==} engines: {node: '>= 10.13.0'} select-hose@2.0.0: @@ -6498,8 +6516,8 @@ packages: resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==} engines: {node: ^14.18.0 || >=16.0.0} - tapable@2.2.3: - resolution: {integrity: sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==} + tapable@2.3.0: + resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==} engines: {node: '>=6'} tar-fs@2.1.1: @@ -6538,8 +6556,8 @@ packages: engines: {node: '>=10'} hasBin: true - terser@5.44.0: - resolution: {integrity: sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==} + terser@5.44.1: + resolution: {integrity: sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==} engines: {node: '>=10'} hasBin: true @@ -6796,6 +6814,12 @@ packages: peerDependencies: browserslist: '>= 4.21.0' + update-browserslist-db@1.1.4: + resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} @@ -6990,8 +7014,8 @@ packages: webpack-virtual-modules@0.6.2: resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} - webpack@5.102.0: - resolution: {integrity: sha512-hUtqAR3ZLVEYDEABdBioQCIqSoguHbFn1K7WlPPWSuXmx0031BD73PSE35jKyftdSh4YLDoQNgK4pqBt5Q82MA==} + webpack@5.102.1: + resolution: {integrity: sha512-7h/weGm9d/ywQ6qzJ+Xy+r9n/3qgp/thalBbpOi5i223dPXKi04IBtqPN9nTd+jBc7QKfvDbaBnFipYp4sJAUQ==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -7398,7 +7422,7 @@ snapshots: dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.2000.4(chokidar@4.0.3) - '@angular-devkit/build-webpack': 0.2000.4(chokidar@4.0.3)(webpack-dev-server@5.2.1(webpack@5.102.0))(webpack@5.99.8(esbuild@0.25.5)) + '@angular-devkit/build-webpack': 0.2000.4(chokidar@4.0.3)(webpack-dev-server@5.2.1(webpack@5.102.1))(webpack@5.99.8(esbuild@0.25.5)) '@angular-devkit/core': 20.0.4(chokidar@4.0.3) '@angular/build': 20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) @@ -7417,7 +7441,7 @@ snapshots: ansi-colors: 4.1.3 autoprefixer: 10.4.21(postcss@8.5.3) babel-loader: 10.0.0(@babel/core@7.27.1)(webpack@5.99.8(esbuild@0.25.5)) - browserslist: 4.26.3 + browserslist: 4.28.0 copy-webpack-plugin: 13.0.0(webpack@5.99.8(esbuild@0.25.5)) css-loader: 7.1.2(webpack@5.99.8(esbuild@0.25.5)) esbuild-wasm: 0.25.5 @@ -7484,12 +7508,12 @@ snapshots: - webpack-cli - yaml - '@angular-devkit/build-webpack@0.2000.4(chokidar@4.0.3)(webpack-dev-server@5.2.1(webpack@5.102.0))(webpack@5.99.8(esbuild@0.25.5))': + '@angular-devkit/build-webpack@0.2000.4(chokidar@4.0.3)(webpack-dev-server@5.2.1(webpack@5.102.1))(webpack@5.99.8(esbuild@0.25.5))': dependencies: '@angular-devkit/architect': 0.2000.4(chokidar@4.0.3) rxjs: 7.8.2 webpack: 5.99.8(esbuild@0.25.5) - webpack-dev-server: 5.2.1(webpack@5.102.0) + webpack-dev-server: 5.2.1(webpack@5.102.1) transitivePeerDependencies: - chokidar @@ -7600,7 +7624,7 @@ snapshots: '@inquirer/confirm': 5.1.10(@types/node@24.10.1) '@vitejs/plugin-basic-ssl': 2.0.0(vite@6.3.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.88.0)(terser@5.39.1)(yaml@2.7.0)) beasties: 0.3.4 - browserslist: 4.26.3 + browserslist: 4.28.0 esbuild: 0.25.5 https-proxy-agent: 7.0.6 istanbul-lib-instrument: 6.0.3 @@ -7906,7 +7930,7 @@ snapshots: dependencies: '@babel/compat-data': 7.28.4 '@babel/helper-validator-option': 7.27.1 - browserslist: 4.26.3 + browserslist: 4.28.0 lru-cache: 5.1.1 semver: 6.3.1 @@ -8637,11 +8661,11 @@ snapshots: unplugin: 1.16.1 zod: 3.25.76 - '@codecov/webpack-plugin@1.9.1(webpack@5.102.0)': + '@codecov/webpack-plugin@1.9.1(webpack@5.102.1)': dependencies: '@codecov/bundler-plugin-core': 1.9.1 unplugin: 1.16.1 - webpack: 5.102.0 + webpack: 5.102.1 '@cspotcode/source-map-support@0.8.1': dependencies: @@ -10713,8 +10737,8 @@ snapshots: autoprefixer@10.4.21(postcss@8.5.3): dependencies: - browserslist: 4.26.3 - caniuse-lite: 1.0.30001746 + browserslist: 4.28.0 + caniuse-lite: 1.0.30001755 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.1 @@ -10812,6 +10836,8 @@ snapshots: baseline-browser-mapping@2.8.10: {} + baseline-browser-mapping@2.8.29: {} + batch@0.6.1: {} beasties@0.3.4: @@ -10912,6 +10938,14 @@ snapshots: node-releases: 2.0.21 update-browserslist-db: 1.1.3(browserslist@4.26.3) + browserslist@4.28.0: + dependencies: + baseline-browser-mapping: 2.8.29 + caniuse-lite: 1.0.30001755 + electron-to-chromium: 1.5.255 + node-releases: 2.0.27 + update-browserslist-db: 1.1.4(browserslist@4.28.0) + bs-logger@0.2.6: dependencies: fast-json-stable-stringify: 2.1.0 @@ -10967,6 +11001,8 @@ snapshots: caniuse-lite@1.0.30001746: {} + caniuse-lite@1.0.30001755: {} + canvas@3.0.0: dependencies: node-addon-api: 7.1.1 @@ -11117,14 +11153,14 @@ snapshots: dependencies: glob-parent: 6.0.2 normalize-path: 3.0.0 - schema-utils: 4.3.2 + schema-utils: 4.3.3 serialize-javascript: 6.0.2 tinyglobby: 0.2.15 webpack: 5.99.8(esbuild@0.25.5) core-js-compat@3.43.0: dependencies: - browserslist: 4.26.3 + browserslist: 4.28.0 core-util-is@1.0.3: {} @@ -11309,6 +11345,8 @@ snapshots: electron-to-chromium@1.5.228: {} + electron-to-chromium@1.5.255: {} + emittery@0.13.1: {} emoji-regex@10.5.0: {} @@ -11336,7 +11374,7 @@ snapshots: enhanced-resolve@5.18.3: dependencies: graceful-fs: 4.2.11 - tapable: 2.2.3 + tapable: 2.3.0 entities@4.5.0: {} @@ -12903,7 +12941,7 @@ snapshots: '@lmdb/lmdb-win32-x64': 3.4.2 optional: true - loader-runner@4.3.0: {} + loader-runner@4.3.1: {} loader-utils@2.0.4: dependencies: @@ -13046,8 +13084,8 @@ snapshots: mini-css-extract-plugin@2.9.2(webpack@5.99.8(esbuild@0.25.5)): dependencies: - schema-utils: 4.3.2 - tapable: 2.2.3 + schema-utils: 4.3.3 + tapable: 2.3.0 webpack: 5.99.8(esbuild@0.25.5) minimalistic-assert@1.0.1: {} @@ -13254,6 +13292,8 @@ snapshots: node-releases@2.0.21: {} + node-releases@2.0.27: {} + nopt@8.1.0: dependencies: abbrev: 3.0.1 @@ -13919,7 +13959,7 @@ snapshots: dependencies: xmlchars: 2.2.0 - schema-utils@4.3.2: + schema-utils@4.3.3: dependencies: '@types/json-schema': 7.0.15 ajv: 8.17.1 @@ -14262,7 +14302,7 @@ snapshots: dependencies: '@pkgr/core': 0.2.9 - tapable@2.2.3: {} + tapable@2.3.0: {} tar-fs@2.1.1: dependencies: @@ -14302,21 +14342,21 @@ snapshots: dependencies: '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 - schema-utils: 4.3.2 + schema-utils: 4.3.3 serialize-javascript: 6.0.2 - terser: 5.44.0 + terser: 5.44.1 webpack: 5.99.8(esbuild@0.25.5) optionalDependencies: esbuild: 0.25.5 - terser-webpack-plugin@5.3.14(webpack@5.102.0): + terser-webpack-plugin@5.3.14(webpack@5.102.1): dependencies: '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 - schema-utils: 4.3.2 + schema-utils: 4.3.3 serialize-javascript: 6.0.2 - terser: 5.44.0 - webpack: 5.102.0 + terser: 5.44.1 + webpack: 5.102.1 terser@5.39.1: dependencies: @@ -14325,7 +14365,7 @@ snapshots: commander: 2.20.3 source-map-support: 0.5.21 - terser@5.44.0: + terser@5.44.1: dependencies: '@jridgewell/source-map': 0.3.11 acorn: 8.15.0 @@ -14579,6 +14619,12 @@ snapshots: escalade: 3.2.0 picocolors: 1.1.1 + update-browserslist-db@1.1.4(browserslist@4.28.0): + dependencies: + browserslist: 4.28.0 + escalade: 3.2.0 + picocolors: 1.1.1 + uri-js@4.4.1: dependencies: punycode: 2.3.1 @@ -14682,16 +14728,16 @@ snapshots: webidl-conversions@7.0.0: {} - webpack-dev-middleware@7.4.2(webpack@5.102.0): + webpack-dev-middleware@7.4.2(webpack@5.102.1): dependencies: colorette: 2.0.20 memfs: 4.17.2 mime-types: 2.1.35 on-finished: 2.4.1 range-parser: 1.2.1 - schema-utils: 4.3.2 + schema-utils: 4.3.3 optionalDependencies: - webpack: 5.102.0 + webpack: 5.102.1 webpack-dev-middleware@7.4.2(webpack@5.99.8(esbuild@0.25.5)): dependencies: @@ -14700,11 +14746,11 @@ snapshots: mime-types: 2.1.35 on-finished: 2.4.1 range-parser: 1.2.1 - schema-utils: 4.3.2 + schema-utils: 4.3.3 optionalDependencies: webpack: 5.99.8(esbuild@0.25.5) - webpack-dev-server@5.2.1(webpack@5.102.0): + webpack-dev-server@5.2.1(webpack@5.102.1): dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 @@ -14727,15 +14773,15 @@ snapshots: launch-editor: 2.10.0 open: 10.1.2 p-retry: 6.2.1 - schema-utils: 4.3.2 + schema-utils: 4.3.3 selfsigned: 2.4.1 serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack-dev-middleware: 7.4.2(webpack@5.102.0) + webpack-dev-middleware: 7.4.2(webpack@5.102.1) ws: 8.18.3 optionalDependencies: - webpack: 5.102.0 + webpack: 5.102.1 transitivePeerDependencies: - bufferutil - debug @@ -14765,7 +14811,7 @@ snapshots: launch-editor: 2.10.0 open: 10.1.2 p-retry: 6.2.1 - schema-utils: 4.3.2 + schema-utils: 4.3.3 selfsigned: 2.4.1 serve-index: 1.9.1 sockjs: 0.3.24 @@ -14795,7 +14841,7 @@ snapshots: webpack-virtual-modules@0.6.2: {} - webpack@5.102.0: + webpack@5.102.1: dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.8 @@ -14805,7 +14851,7 @@ snapshots: '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.15.0 acorn-import-phases: 1.0.4(acorn@8.15.0) - browserslist: 4.26.3 + browserslist: 4.28.0 chrome-trace-event: 1.0.4 enhanced-resolve: 5.18.3 es-module-lexer: 1.7.0 @@ -14814,12 +14860,12 @@ snapshots: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 + loader-runner: 4.3.1 mime-types: 2.1.35 neo-async: 2.6.2 - schema-utils: 4.3.2 - tapable: 2.2.3 - terser-webpack-plugin: 5.3.14(webpack@5.102.0) + schema-utils: 4.3.3 + tapable: 2.3.0 + terser-webpack-plugin: 5.3.14(webpack@5.102.1) watchpack: 2.4.4 webpack-sources: 3.3.3 transitivePeerDependencies: @@ -14836,7 +14882,7 @@ snapshots: '@webassemblyjs/wasm-edit': 1.14.1 '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.15.0 - browserslist: 4.26.3 + browserslist: 4.28.0 chrome-trace-event: 1.0.4 enhanced-resolve: 5.18.3 es-module-lexer: 1.7.0 @@ -14845,11 +14891,11 @@ snapshots: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 + loader-runner: 4.3.1 mime-types: 2.1.35 neo-async: 2.6.2 - schema-utils: 4.3.2 - tapable: 2.2.3 + schema-utils: 4.3.3 + tapable: 2.3.0 terser-webpack-plugin: 5.3.14(esbuild@0.25.5)(webpack@5.99.8(esbuild@0.25.5)) watchpack: 2.4.4 webpack-sources: 3.3.3 From 8c7fa4e1659282dc3903a85ff33e23d533d25944 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 04:12:40 +0000 Subject: [PATCH 089/133] Chore(deps-dev): Bump @playwright/test from 1.55.1 to 1.56.1 in /src-ui (#11263) Bumps [@playwright/test](https://github.com/microsoft/playwright) from 1.55.1 to 1.56.1. - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.56.1) --- updated-dependencies: - dependency-name: "@playwright/test" dependency-version: 1.56.1 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src-ui/package.json | 2 +- src-ui/pnpm-lock.yaml | 26 +++++++++++++------------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src-ui/package.json b/src-ui/package.json index acd63e65e..e42e990b5 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -53,7 +53,7 @@ "@angular/cli": "~20.3.3", "@angular/compiler-cli": "~20.3.2", "@codecov/webpack-plugin": "^1.9.1", - "@playwright/test": "^1.55.1", + "@playwright/test": "^1.56.1", "@types/jest": "^30.0.0", "@types/node": "^24.10.1", "@typescript-eslint/eslint-plugin": "^8.47.0", diff --git a/src-ui/pnpm-lock.yaml b/src-ui/pnpm-lock.yaml index 45c75f5fb..3688f4d2a 100644 --- a/src-ui/pnpm-lock.yaml +++ b/src-ui/pnpm-lock.yaml @@ -130,8 +130,8 @@ importers: specifier: ^1.9.1 version: 1.9.1(webpack@5.102.1) '@playwright/test': - specifier: ^1.55.1 - version: 1.55.1 + specifier: ^1.56.1 + version: 1.56.1 '@types/jest': specifier: ^30.0.0 version: 30.0.0 @@ -2727,8 +2727,8 @@ packages: resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - '@playwright/test@1.55.1': - resolution: {integrity: sha512-IVAh/nOJaw6W9g+RJVlIQJ6gSiER+ae6mKQ5CX1bERzQgbC1VSeBlwdvczT7pxb0GWiyrxH4TGKbMfDb4Sq/ig==} + '@playwright/test@1.56.1': + resolution: {integrity: sha512-vSMYtL/zOcFpvJCW71Q/OEGQb7KYBPAdKh35WNSkaZA75JlAO8ED8UN6GUNTm3drWomcbcqRPFqQbLae8yBTdg==} engines: {node: '>=18'} hasBin: true @@ -5899,13 +5899,13 @@ packages: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} - playwright-core@1.55.1: - resolution: {integrity: sha512-Z6Mh9mkwX+zxSlHqdr5AOcJnfp+xUWLCt9uKV18fhzA8eyxUd8NUWzAjxUh55RZKSYwDGX0cfaySdhZJGMoJ+w==} + playwright-core@1.56.1: + resolution: {integrity: sha512-hutraynyn31F+Bifme+Ps9Vq59hKuUCz7H1kDOcBs+2oGguKkWTU50bBWrtz34OUWmIwpBTWDxaRPXrIXkgvmQ==} engines: {node: '>=18'} hasBin: true - playwright@1.55.1: - resolution: {integrity: sha512-cJW4Xd/G3v5ovXtJJ52MAOclqeac9S/aGGgRzLabuF8TnIb6xHvMzKIa6JmrRzUkeXJgfL1MhukP0NK6l39h3A==} + playwright@1.56.1: + resolution: {integrity: sha512-aFi5B0WovBHTEvpM3DzXTUaeN6eN0qWnTkKx4NQaH4Wvcmc153PdaY2UBdSYKaGYw+UyWXSVyxDUg5DoPEttjw==} engines: {node: '>=18'} hasBin: true @@ -9938,9 +9938,9 @@ snapshots: '@pkgr/core@0.2.9': {} - '@playwright/test@1.55.1': + '@playwright/test@1.56.1': dependencies: - playwright: 1.55.1 + playwright: 1.56.1 '@popperjs/core@2.11.8': {} @@ -13563,11 +13563,11 @@ snapshots: dependencies: find-up: 4.1.0 - playwright-core@1.55.1: {} + playwright-core@1.56.1: {} - playwright@1.55.1: + playwright@1.56.1: dependencies: - playwright-core: 1.55.1 + playwright-core: 1.56.1 optionalDependencies: fsevents: 2.3.2 From addaf92a61efb35cc5cdc25a923af4f7e73a39f4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 20:53:54 -0800 Subject: [PATCH 090/133] Chore(deps): Bump the frontend-angular-dependencies group (#11260) Bumps the frontend-angular-dependencies group in /src-ui with 21 updates: | Package | From | To | | --- | --- | --- | | [@angular/cdk](https://github.com/angular/components) | `20.2.6` | `20.2.11` | | [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) | `20.3.2` | `20.3.9` | | [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) | `20.3.2` | `20.3.9` | | [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) | `20.3.2` | `20.3.9` | | [@angular/forms](https://github.com/angular/angular/tree/HEAD/packages/forms) | `20.3.2` | `20.3.9` | | [@angular/localize](https://github.com/angular/angular) | `20.3.2` | `20.3.9` | | [@angular/platform-browser](https://github.com/angular/angular/tree/HEAD/packages/platform-browser) | `20.3.2` | `20.3.9` | | [@angular/platform-browser-dynamic](https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic) | `20.3.2` | `20.3.9` | | [@angular/router](https://github.com/angular/angular/tree/HEAD/packages/router) | `20.3.2` | `20.3.9` | | [@ng-select/ng-select](https://github.com/ng-select/ng-select) | `20.2.2` | `20.6.1` | | [ngx-cookie-service](https://github.com/stevermeister/ngx-cookie-service) | `20.1.0` | `20.1.1` | | [@angular-devkit/core](https://github.com/angular/angular-cli) | `20.3.3` | `20.3.8` | | [@angular-devkit/schematics](https://github.com/angular/angular-cli) | `20.3.3` | `20.3.8` | | [@angular-eslint/builder](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/builder) | `20.3.0` | `20.5.0` | | [@angular-eslint/eslint-plugin](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin) | `20.3.0` | `20.5.0` | | [@angular-eslint/eslint-plugin-template](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin-template) | `20.3.0` | `20.5.0` | | [@angular-eslint/schematics](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/schematics) | `20.3.0` | `20.5.0` | | [@angular-eslint/template-parser](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/template-parser) | `20.3.0` | `20.5.0` | | [@angular/build](https://github.com/angular/angular-cli) | `20.3.3` | `20.3.8` | | [@angular/cli](https://github.com/angular/angular-cli) | `20.3.3` | `20.3.8` | | [@angular/compiler-cli](https://github.com/angular/angular/tree/HEAD/packages/compiler-cli) | `20.3.2` | `20.3.9` | Updates `@angular/cdk` from 20.2.6 to 20.2.11 - [Release notes](https://github.com/angular/components/releases) - [Changelog](https://github.com/angular/components/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/components/compare/20.2.6...20.2.11) Updates `@angular/common` from 20.3.2 to 20.3.9 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/20.3.9/packages/common) Updates `@angular/compiler` from 20.3.2 to 20.3.9 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/20.3.9/packages/compiler) Updates `@angular/core` from 20.3.2 to 20.3.9 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/20.3.9/packages/core) Updates `@angular/forms` from 20.3.2 to 20.3.9 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/20.3.9/packages/forms) Updates `@angular/localize` from 20.3.2 to 20.3.9 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/compare/20.3.2...20.3.9) Updates `@angular/platform-browser` from 20.3.2 to 20.3.9 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/20.3.9/packages/platform-browser) Updates `@angular/platform-browser-dynamic` from 20.3.2 to 20.3.9 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/20.3.9/packages/platform-browser-dynamic) Updates `@angular/router` from 20.3.2 to 20.3.9 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/20.3.9/packages/router) Updates `@ng-select/ng-select` from 20.2.2 to 20.6.1 - [Release notes](https://github.com/ng-select/ng-select/releases) - [Changelog](https://github.com/ng-select/ng-select/blob/master/CHANGELOG.md) - [Commits](https://github.com/ng-select/ng-select/compare/v20.2.2...v20.6.1) Updates `ngx-cookie-service` from 20.1.0 to 20.1.1 - [Release notes](https://github.com/stevermeister/ngx-cookie-service/releases) - [Changelog](https://github.com/stevermeister/ngx-cookie-service/blob/master/CHANGELOG.md) - [Commits](https://github.com/stevermeister/ngx-cookie-service/compare/v20.1.0...v20.1.1) Updates `@angular-devkit/core` from 20.3.3 to 20.3.8 - [Release notes](https://github.com/angular/angular-cli/releases) - [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular-cli/compare/20.3.3...20.3.8) Updates `@angular-devkit/schematics` from 20.3.3 to 20.3.8 - [Release notes](https://github.com/angular/angular-cli/releases) - [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular-cli/compare/20.3.3...20.3.8) Updates `@angular-eslint/builder` from 20.3.0 to 20.5.0 - [Release notes](https://github.com/angular-eslint/angular-eslint/releases) - [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/builder/CHANGELOG.md) - [Commits](https://github.com/angular-eslint/angular-eslint/commits/v20.5.0/packages/builder) Updates `@angular-eslint/eslint-plugin` from 20.3.0 to 20.5.0 - [Release notes](https://github.com/angular-eslint/angular-eslint/releases) - [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/angular-eslint/angular-eslint/commits/v20.5.0/packages/eslint-plugin) Updates `@angular-eslint/eslint-plugin-template` from 20.3.0 to 20.5.0 - [Release notes](https://github.com/angular-eslint/angular-eslint/releases) - [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin-template/CHANGELOG.md) - [Commits](https://github.com/angular-eslint/angular-eslint/commits/v20.5.0/packages/eslint-plugin-template) Updates `@angular-eslint/schematics` from 20.3.0 to 20.5.0 - [Release notes](https://github.com/angular-eslint/angular-eslint/releases) - [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/schematics/CHANGELOG.md) - [Commits](https://github.com/angular-eslint/angular-eslint/commits/v20.5.0/packages/schematics) Updates `@angular-eslint/template-parser` from 20.3.0 to 20.5.0 - [Release notes](https://github.com/angular-eslint/angular-eslint/releases) - [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/template-parser/CHANGELOG.md) - [Commits](https://github.com/angular-eslint/angular-eslint/commits/v20.5.0/packages/template-parser) Updates `@angular/build` from 20.3.3 to 20.3.8 - [Release notes](https://github.com/angular/angular-cli/releases) - [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular-cli/compare/20.3.3...20.3.8) Updates `@angular/cli` from 20.3.3 to 20.3.8 - [Release notes](https://github.com/angular/angular-cli/releases) - [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular-cli/compare/20.3.3...20.3.8) Updates `@angular/compiler-cli` from 20.3.2 to 20.3.9 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/20.3.9/packages/compiler-cli) --- updated-dependencies: - dependency-name: "@angular/cdk" dependency-version: 20.2.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/common" dependency-version: 20.3.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/compiler" dependency-version: 20.3.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/core" dependency-version: 20.3.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/forms" dependency-version: 20.3.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/localize" dependency-version: 20.3.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/platform-browser" dependency-version: 20.3.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/platform-browser-dynamic" dependency-version: 20.3.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/router" dependency-version: 20.3.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@ng-select/ng-select" dependency-version: 20.6.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: ngx-cookie-service dependency-version: 20.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular-devkit/core" dependency-version: 20.3.8 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular-devkit/schematics" dependency-version: 20.3.8 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular-eslint/builder" dependency-version: 20.5.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: "@angular-eslint/eslint-plugin" dependency-version: 20.5.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: "@angular-eslint/eslint-plugin-template" dependency-version: 20.5.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: "@angular-eslint/schematics" dependency-version: 20.5.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: "@angular-eslint/template-parser" dependency-version: 20.5.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: "@angular/build" dependency-version: 20.3.8 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/cli" dependency-version: 20.3.8 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/compiler-cli" dependency-version: 20.3.9 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src-ui/package.json | 42 +- src-ui/pnpm-lock.yaml | 1728 +++++++++++++++-------------------------- 2 files changed, 653 insertions(+), 1117 deletions(-) diff --git a/src-ui/package.json b/src-ui/package.json index e42e990b5..b64821855 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -11,17 +11,17 @@ }, "private": true, "dependencies": { - "@angular/cdk": "^20.2.6", - "@angular/common": "~20.3.2", - "@angular/compiler": "~20.3.2", - "@angular/core": "~20.3.2", - "@angular/forms": "~20.3.2", - "@angular/localize": "~20.3.2", - "@angular/platform-browser": "~20.3.2", - "@angular/platform-browser-dynamic": "~20.3.2", - "@angular/router": "~20.3.2", + "@angular/cdk": "^20.2.13", + "@angular/common": "~20.3.12", + "@angular/compiler": "~20.3.12", + "@angular/core": "~20.3.12", + "@angular/forms": "~20.3.12", + "@angular/localize": "~20.3.12", + "@angular/platform-browser": "~20.3.12", + "@angular/platform-browser-dynamic": "~20.3.12", + "@angular/router": "~20.3.12", "@ng-bootstrap/ng-bootstrap": "^19.0.1", - "@ng-select/ng-select": "^20.6.3", + "@ng-select/ng-select": "^20.7.0", "@ngneat/dirty-check-forms": "^3.0.3", "@popperjs/core": "^2.11.8", "bootstrap": "^5.3.8", @@ -30,7 +30,7 @@ "ng2-pdf-viewer": "^10.4.0", "ngx-bootstrap-icons": "^1.9.3", "ngx-color": "^10.1.0", - "ngx-cookie-service": "^20.1.0", + "ngx-cookie-service": "^20.1.1", "ngx-device-detector": "^10.1.0", "ngx-ui-tour-ng-bootstrap": "^17.0.1", "rxjs": "^7.8.2", @@ -42,16 +42,16 @@ "devDependencies": { "@angular-builders/custom-webpack": "^20.0.0", "@angular-builders/jest": "^20.0.0", - "@angular-devkit/core": "^20.3.3", - "@angular-devkit/schematics": "^20.3.3", - "@angular-eslint/builder": "20.3.0", - "@angular-eslint/eslint-plugin": "20.3.0", - "@angular-eslint/eslint-plugin-template": "20.3.0", - "@angular-eslint/schematics": "20.3.0", - "@angular-eslint/template-parser": "20.3.0", - "@angular/build": "^20.3.3", - "@angular/cli": "~20.3.3", - "@angular/compiler-cli": "~20.3.2", + "@angular-devkit/core": "^20.3.10", + "@angular-devkit/schematics": "^20.3.10", + "@angular-eslint/builder": "20.6.0", + "@angular-eslint/eslint-plugin": "20.6.0", + "@angular-eslint/eslint-plugin-template": "20.6.0", + "@angular-eslint/schematics": "20.6.0", + "@angular-eslint/template-parser": "20.6.0", + "@angular/build": "^20.3.10", + "@angular/cli": "~20.3.10", + "@angular/compiler-cli": "~20.3.12", "@codecov/webpack-plugin": "^1.9.1", "@playwright/test": "^1.56.1", "@types/jest": "^30.0.0", diff --git a/src-ui/pnpm-lock.yaml b/src-ui/pnpm-lock.yaml index 3688f4d2a..7def279c6 100644 --- a/src-ui/pnpm-lock.yaml +++ b/src-ui/pnpm-lock.yaml @@ -9,41 +9,41 @@ importers: .: dependencies: '@angular/cdk': - specifier: ^20.2.6 - version: 20.2.6(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + specifier: ^20.2.13 + version: 20.2.13(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/common': - specifier: ~20.3.2 - version: 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + specifier: ~20.3.12 + version: 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/compiler': - specifier: ~20.3.2 - version: 20.3.2 + specifier: ~20.3.12 + version: 20.3.12 '@angular/core': - specifier: ~20.3.2 - version: 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) + specifier: ~20.3.12 + version: 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) '@angular/forms': - specifier: ~20.3.2 - version: 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + specifier: ~20.3.12 + version: 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) '@angular/localize': - specifier: ~20.3.2 - version: 20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2) + specifier: ~20.3.12 + version: 20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12) '@angular/platform-browser': - specifier: ~20.3.2 - version: 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)) + specifier: ~20.3.12 + version: 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) '@angular/platform-browser-dynamic': - specifier: ~20.3.2 - version: 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))) + specifier: ~20.3.12 + version: 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))) '@angular/router': - specifier: ~20.3.2 - version: 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + specifier: ~20.3.12 + version: 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) '@ng-bootstrap/ng-bootstrap': specifier: ^19.0.1 - version: 19.0.1(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@popperjs/core@2.11.8)(rxjs@7.8.2) + version: 19.0.1(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@popperjs/core@2.11.8)(rxjs@7.8.2) '@ng-select/ng-select': - specifier: ^20.6.3 - version: 20.6.3(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)) + specifier: ^20.7.0 + version: 20.7.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)) '@ngneat/dirty-check-forms': specifier: ^3.0.3 - version: 3.0.3(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/router@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(lodash-es@4.17.21)(rxjs@7.8.2) + version: 3.0.3(30ab5a8fe47ec28a91fa5d2ee68e6d33) '@popperjs/core': specifier: ^2.11.8 version: 2.11.8 @@ -61,19 +61,19 @@ importers: version: 10.4.0 ngx-bootstrap-icons: specifier: ^1.9.3 - version: 1.9.3(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)) + version: 1.9.3(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) ngx-color: specifier: ^10.1.0 - version: 10.1.0(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)) + version: 10.1.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) ngx-cookie-service: - specifier: ^20.1.0 - version: 20.1.0(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)) + specifier: ^20.1.1 + version: 20.1.1(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) ngx-device-detector: specifier: ^10.1.0 - version: 10.1.0(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)) + version: 10.1.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) ngx-ui-tour-ng-bootstrap: specifier: ^17.0.1 - version: 17.0.1(a51ec0d773a3e93ac3d51d20ca771021) + version: 17.0.1(ea1ef7845320e16ba2fd99b51fa9f5ad) rxjs: specifier: ^7.8.2 version: 7.8.2 @@ -92,40 +92,40 @@ importers: devDependencies: '@angular-builders/custom-webpack': specifier: ^20.0.0 - version: 20.0.0(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) + version: 20.0.0(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) '@angular-builders/jest': specifier: ^20.0.0 - version: 20.0.0(a0f61c2d4c2deba6c0f5abd5d60664ab) + version: 20.0.0(f235def4c8e1307a0f702d1be69d225c) '@angular-devkit/core': - specifier: ^20.3.3 - version: 20.3.3(chokidar@4.0.3) + specifier: ^20.3.10 + version: 20.3.10(chokidar@4.0.3) '@angular-devkit/schematics': - specifier: ^20.3.3 - version: 20.3.3(chokidar@4.0.3) + specifier: ^20.3.10 + version: 20.3.10(chokidar@4.0.3) '@angular-eslint/builder': - specifier: 20.3.0 - version: 20.3.0(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + specifier: 20.6.0 + version: 20.6.0(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@angular-eslint/eslint-plugin': - specifier: 20.3.0 - version: 20.3.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + specifier: 20.6.0 + version: 20.6.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@angular-eslint/eslint-plugin-template': - specifier: 20.3.0 - version: 20.3.0(@angular-eslint/template-parser@20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + specifier: 20.6.0 + version: 20.6.0(@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@angular-eslint/schematics': - specifier: 20.3.0 - version: 20.3.0(@angular-eslint/template-parser@20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + specifier: 20.6.0 + version: 20.6.0(@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@angular-eslint/template-parser': - specifier: 20.3.0 - version: 20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + specifier: 20.6.0 + version: 20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@angular/build': - specifier: ^20.3.3 - version: 20.3.3(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) + specifier: ^20.3.10 + version: 20.3.10(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) '@angular/cli': - specifier: ~20.3.3 - version: 20.3.3(@types/node@24.10.1)(chokidar@4.0.3) + specifier: ~20.3.10 + version: 20.3.10(@types/node@24.10.1)(chokidar@4.0.3) '@angular/compiler-cli': - specifier: ~20.3.2 - version: 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) + specifier: ~20.3.12 + version: 20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3) '@codecov/webpack-plugin': specifier: ^1.9.1 version: 1.9.1(webpack@5.102.1) @@ -161,7 +161,7 @@ importers: version: 16.0.0 jest-preset-angular: specifier: ^15.0.3 - version: 15.0.3(53f1eecb3c13a66432ac1820fed37a4d) + version: 15.0.3(95a8eae46a7b2bcef52e71596dd4f983) jest-websocket-mock: specifier: ^2.5.0 version: 2.5.0 @@ -279,8 +279,8 @@ packages: resolution: {integrity: sha512-pg+EPv/j17ybCoYiKjeRCebkE5CeD009xC6XJfugBmui6CcCQ5UAN82ibBhL869PXR7xCboylcRxlFfcBmvCpA==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - '@angular-devkit/architect@0.2003.3': - resolution: {integrity: sha512-DOnGyv9g24vaDzf5koLOcVri1kYJIBD9UKiJWOWk4H5cFlcpTXQ+PilPmDq6A+X94Tt4MZHImmKsk6LLRPIwFg==} + '@angular-devkit/architect@0.2003.10': + resolution: {integrity: sha512-2SWetxJzS8gRX6OKQstkWx37VRvZVgcEBDLsDSaeTjpnwh81A+niZQjAVRdwL0NEt1Wixk/RxfeUuCmdyyHvhQ==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} '@angular-devkit/build-angular@20.0.4': @@ -349,8 +349,8 @@ packages: chokidar: optional: true - '@angular-devkit/core@20.3.3': - resolution: {integrity: sha512-2T5mX2duLapZYPYmXUSUe9VW8Dhu10nVBVvEp31jSE6xvjbPM5mlsv6+fks1E4RjhzvaamY9bm3WgwYwNiEV5g==} + '@angular-devkit/core@20.3.10': + resolution: {integrity: sha512-COOT2eVebDwHhwENk12VR6m0wjL8D7p0dncEHF15zaBt1IXEnVhGESjSrs5klnPnt5T55qCBKyCTaeK7i/cS8Q==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: chokidar: ^4.0.0 @@ -358,46 +358,46 @@ packages: chokidar: optional: true - '@angular-devkit/schematics@20.3.3': - resolution: {integrity: sha512-LDn39BjyQLAK/DaVamLElMtI0UoCZIs4jKcMEv8PJ/nnBmrYFHVavWPggeFWMycjeXsdX34Msiml88HZWlXypw==} + '@angular-devkit/schematics@20.3.10': + resolution: {integrity: sha512-2N2WF9lj+kr3uCG4+vFadYCL5hAT4dxMgzwScSdOqSd0O+GZD0CzKbDzlfvWIWC/ZealC5Sh4dFEQaRfmy72xA==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - '@angular-eslint/builder@20.3.0': - resolution: {integrity: sha512-3XpWLdh+/K4+r0ChkKW00SXWyBA7ShMpE+Pt1XUmIu4srJgGRnt8e+kC4Syi+s2t5QS7PjlwRaelB1KfSMXZ5A==} + '@angular-eslint/builder@20.6.0': + resolution: {integrity: sha512-bEvQxjnxXiajcPoSnFPRmc9MYLtultZX7Z/psqj6jiGVujgs5UObs91JcmT4QY56ZkdZjETw9RhztLmRTuLB3Q==} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '*' - '@angular-eslint/bundled-angular-compiler@20.3.0': - resolution: {integrity: sha512-QwuNnmRNr/uNj89TxknPbGcs5snX1w7RoJJPNAsfb2QGcHzUTQovS8hqm9kaDZdpUJDPP7jt7B6F0+EjrPAXRA==} + '@angular-eslint/bundled-angular-compiler@20.6.0': + resolution: {integrity: sha512-axeU33lBOcfQ/kcpBc/70vR69PFX9kqgUtroENK0lq6dBeRgi6LJVbBOAHRtR2Xfxd9Lv4YbqWuJ0oQ5BwSTGQ==} - '@angular-eslint/eslint-plugin-template@20.3.0': - resolution: {integrity: sha512-WMJDJfybOLCiN4QrOyrLl+Zt5F+A/xoDYMWTdn+LgACheLs2tguVQiwf+oCgHnHGcsTsulPYlRHldKBGZMgs4w==} + '@angular-eslint/eslint-plugin-template@20.6.0': + resolution: {integrity: sha512-HoV0QeZFP63vUyD+uBYdqGi95xNJ64Wsb9vG0/auY5sqHsed8tbmFZgNmr8/ho1AHMyQ2HhH7eLIsV2glftyEg==} peerDependencies: - '@angular-eslint/template-parser': 20.3.0 + '@angular-eslint/template-parser': 20.6.0 '@typescript-eslint/types': ^7.11.0 || ^8.0.0 '@typescript-eslint/utils': ^7.11.0 || ^8.0.0 eslint: ^8.57.0 || ^9.0.0 typescript: '*' - '@angular-eslint/eslint-plugin@20.3.0': - resolution: {integrity: sha512-7ghzGTiExrgTetDQ6IPP5uXSa94Xhtzp2VHCIa58EcUb7oMv06HWZ1Uss3xgFmACsLpN+vayKJIdFiboqaGVRA==} + '@angular-eslint/eslint-plugin@20.6.0': + resolution: {integrity: sha512-hvFtluNRjMqlkwxYGMO1RFgJ5N5/InFZZSHIOput+XXVXYwPrNjbyMY29/ndynpvNktcVq1UPpjv5JAucp0GlA==} peerDependencies: '@typescript-eslint/utils': ^7.11.0 || ^8.0.0 eslint: ^8.57.0 || ^9.0.0 typescript: '*' - '@angular-eslint/schematics@20.3.0': - resolution: {integrity: sha512-4n92tHKIJm1PP+FjhnmO7AMpvKdRIoF+YgF38oUU7aMJqfZ3RXIhazMMxw2u3VU1MisKH766KSll++c4LgarVA==} + '@angular-eslint/schematics@20.6.0': + resolution: {integrity: sha512-bZ3FFyfEUqnLkNj4OzU+0LQH4NiHtWbleuoaaTeIXAG9AHZP9H5PPD9loR3CUaLoHvwY22zWBkBOEuBBDkBAtw==} - '@angular-eslint/template-parser@20.3.0': - resolution: {integrity: sha512-gB564h/kZ7siWvgHDETU++sk5e25qFfVaizLaa6KoBEYFP6dOCiedz15LTcA0TsXp0rGu6Z6zkl291iSM1qzDA==} + '@angular-eslint/template-parser@20.6.0': + resolution: {integrity: sha512-dDsABCf8qoFEUmSQa2F0NBZtkxT+I4GQxKcYSpsFZdgv6zrE46lpJSuRgK8OKOq1jqMmbIEXp2h0FeHyJS/qmg==} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '*' - '@angular-eslint/utils@20.3.0': - resolution: {integrity: sha512-7XOQeNXgyhznDwoP1TwPrCMq/uXKJHQgCVPFREkJGKbNf/jzNldB7iV1eqpBzUQIPEQFgfcDG67dexpMAq3N4g==} + '@angular-eslint/utils@20.6.0': + resolution: {integrity: sha512-usjCCjbdtqy4p8I3BMPn6LrXECFLCohBa75h59PK0kV/TEb8OlnIWIWTVtZAMw/MgohtExl69GkSNmL3ElWbUQ==} peerDependencies: '@typescript-eslint/utils': ^7.11.0 || ^8.0.0 eslint: ^8.57.0 || ^9.0.0 @@ -449,8 +449,8 @@ packages: vitest: optional: true - '@angular/build@20.3.3': - resolution: {integrity: sha512-WhwAbovHAxDbNeR5jB2IS/SVs+yQg9NETFeJ5f7T3n/414ULkGOhXn+29i1rzwJhf1uqM9lsedcv2tKn1N24/A==} + '@angular/build@20.3.10': + resolution: {integrity: sha512-nQrj1nMNZygYDilThc7hPrD6/NIWF/BOSgMfE4VkXQp8d0QronP3HFJ/h77MeoughMRFRhix0pqQSlXJQ2SGTQ==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: '@angular/compiler': ^20.0.0 @@ -460,7 +460,7 @@ packages: '@angular/platform-browser': ^20.0.0 '@angular/platform-server': ^20.0.0 '@angular/service-worker': ^20.0.0 - '@angular/ssr': ^20.3.3 + '@angular/ssr': ^20.3.10 karma: ^6.4.0 less: ^4.2.0 ng-packagr: ^20.0.0 @@ -495,45 +495,45 @@ packages: vitest: optional: true - '@angular/cdk@20.2.6': - resolution: {integrity: sha512-+L0/KGMXE/lVuDid6PMsNSMuZoCnGUbCtuQ804fE4+EXoN+fLe6NVYGMi83ZINuWfeAEanH9l2XMdDIvVRWsUQ==} + '@angular/cdk@20.2.13': + resolution: {integrity: sha512-h1jTkCmJ/rEQQMkxgKFMCBOrMfjZEnppgdekNmSTerwdVp4vdosTDTzFH/kwiOGFeRClffmvqQ2XLG8mQOKOtA==} peerDependencies: '@angular/common': ^20.0.0 || ^21.0.0 '@angular/core': ^20.0.0 || ^21.0.0 rxjs: ^6.5.3 || ^7.4.0 - '@angular/cli@20.3.3': - resolution: {integrity: sha512-3c8xCklJ0C0T6ETSncAoXlOYNi3x7vLT3PS56rIaQ0jtlvD4Y+RQakd3+iffVAapvh/JB27WNor8pJRThLZ/jg==} + '@angular/cli@20.3.10': + resolution: {integrity: sha512-CQzXScurBXSuMMn0jf6UYDItdggaM3bHYERKL4cUG1z5JqSozVFin1+TB1EjWYkddwdgC10R5xQurdMb+ahRNw==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} hasBin: true - '@angular/common@20.3.2': - resolution: {integrity: sha512-5V9AzLhCA1dNhF+mvihmdHoZHbEhIb1jNYRA1/JMheR+G7NR8Mznu6RmWaKSWZ4AJeSJN8rizWN2wpVPWTKjSQ==} + '@angular/common@20.3.12': + resolution: {integrity: sha512-rFcDfe67ffrb435C6t2lc27WGbizeOcgce30tUhH0iezwEvU+kHHWezXXX6Ylx3TFgqGkhcxL0fliuFYrpM1Vw==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} peerDependencies: - '@angular/core': 20.3.2 + '@angular/core': 20.3.12 rxjs: ^6.5.3 || ^7.4.0 - '@angular/compiler-cli@20.3.2': - resolution: {integrity: sha512-rLox2THiALVQqYGUaxZ6YD8qUoXIOGTw3s0tim9/U65GuXGRtYgG0ZQWYp3yjEBes0Ksx2/15eFPp1Ol4FdEKQ==} + '@angular/compiler-cli@20.3.12': + resolution: {integrity: sha512-3SJkexqsydYjIs0iLiJr5AdwkvumpzvjJM6s76iaxXHkRll5k/vM0wqkXLlSIwieBrecO9D4J73lDLWDevXl5A==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} hasBin: true peerDependencies: - '@angular/compiler': 20.3.2 + '@angular/compiler': 20.3.12 typescript: '>=5.8 <6.0' peerDependenciesMeta: typescript: optional: true - '@angular/compiler@20.3.2': - resolution: {integrity: sha512-5fSzkPmRomZ9H43c82FJWLwdOi7MICMimP1y1oYJZcUh3jYRhXUrQvD0jifdRVkkgKNjaZYlMr0NkrYQFgFong==} + '@angular/compiler@20.3.12': + resolution: {integrity: sha512-bGESKz97nWiEQ/sydTq/Lzv3zlLvDb8t0msLG5Xti7Ch1EdLddXS8d2D/zFsjiGbAUKVsT6RgPCLHYoi4ocbhA==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} - '@angular/core@20.3.2': - resolution: {integrity: sha512-88uPgs5LjtnywnQaZE2ShBb1wa8IuD6jWs4nc4feo32QdBc55tjebTBFJSHbi3mUVAp0eS4wI6ITo0YIb01H4g==} + '@angular/core@20.3.12': + resolution: {integrity: sha512-K7vibMr55a7+EsuDhkg4Pk+ELuMm12olllwqL/CiQUcHXZ9Zgc4KYGTUuxWB69qJCG90gdSZS7tm5Dx0wDcyjg==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} peerDependencies: - '@angular/compiler': 20.3.2 + '@angular/compiler': 20.3.12 rxjs: ^6.5.3 || ^7.4.0 zone.js: ~0.15.0 peerDependenciesMeta: @@ -542,50 +542,50 @@ packages: zone.js: optional: true - '@angular/forms@20.3.2': - resolution: {integrity: sha512-ECIbtwc7n9fPbiZXZVaoZpSiOksgcNbZ27oUN9BT7EmoXRzBw6yDL2UX6Ig7pEKhQGyBkKB+TMerRwTDVkkCWg==} + '@angular/forms@20.3.12': + resolution: {integrity: sha512-O0Jy8ScaN3qVipDfR4s0SIxGrz/+MbCdmR05ZYVWf1W5P3dvETKt9WNjX9fYYV47GdgSveyFjuCR2NvWlv94zA==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} peerDependencies: - '@angular/common': 20.3.2 - '@angular/core': 20.3.2 - '@angular/platform-browser': 20.3.2 + '@angular/common': 20.3.12 + '@angular/core': 20.3.12 + '@angular/platform-browser': 20.3.12 rxjs: ^6.5.3 || ^7.4.0 - '@angular/localize@20.3.2': - resolution: {integrity: sha512-RZMHgLZV1Aka7rUKvQbg08Dn+dMyVBEGTlUS6/bTDoB1Xq2UE9L8YKmlnEDQyzveO5vTsPvZZQRL4iLc4IokzQ==} + '@angular/localize@20.3.12': + resolution: {integrity: sha512-wolRAeaWCh6kLNZitrlnQYm9nPaGQ2OwO04I10p1dEY2gC/nCMdJvh3umaOHTD2lN64ebZUxS5gJS8+PPTOcmg==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} hasBin: true peerDependencies: - '@angular/compiler': 20.3.2 - '@angular/compiler-cli': 20.3.2 + '@angular/compiler': 20.3.12 + '@angular/compiler-cli': 20.3.12 - '@angular/platform-browser-dynamic@20.3.2': - resolution: {integrity: sha512-ehoV67Vxr3ZE8BJ3g7Q4ZLHo3qJVoDUDz/4UeCqmDeOnKxcdD53HTA/pgOO4QhKStUFbzgU19OQD4e6fkP8YoQ==} + '@angular/platform-browser-dynamic@20.3.12': + resolution: {integrity: sha512-VviTUCpcbwErQjWd+EZklQf1Fw1FtXui6ey4rEb9g9mCEJ/o08LkM7mWV5IoE6QNCfbgkfgNjEJSJvWe409Mow==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} peerDependencies: - '@angular/common': 20.3.2 - '@angular/compiler': 20.3.2 - '@angular/core': 20.3.2 - '@angular/platform-browser': 20.3.2 + '@angular/common': 20.3.12 + '@angular/compiler': 20.3.12 + '@angular/core': 20.3.12 + '@angular/platform-browser': 20.3.12 - '@angular/platform-browser@20.3.2': - resolution: {integrity: sha512-d9XcT2UuWZCc0UOtkCcPEnMcOFKNczahamT/Izg3H9jLS3IcT6l0ry23d/Xf0DRwhLYQdOZiG7l8HMZ1sWPMOg==} + '@angular/platform-browser@20.3.12': + resolution: {integrity: sha512-14KQsXZyaQhbRwFz1W58CtbXQc9L+mfuHBgwQjQo99422Yk0ye5WVMb6DHH7dH671qFVqL0XL7zdOPBebaAnJQ==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} peerDependencies: - '@angular/animations': 20.3.2 - '@angular/common': 20.3.2 - '@angular/core': 20.3.2 + '@angular/animations': 20.3.12 + '@angular/common': 20.3.12 + '@angular/core': 20.3.12 peerDependenciesMeta: '@angular/animations': optional: true - '@angular/router@20.3.2': - resolution: {integrity: sha512-+Crx6QpK00juoNU3A1vbVf4DQ7fduLe3DUdAob6a9Uj+IoWj2Ijd8zUWF8E0cfNNFotJ4Gost0lJORDvqKcC7A==} + '@angular/router@20.3.12': + resolution: {integrity: sha512-hUipb9JI/Euy3bdlhzkcWlw3cTyssPTVTDwSvyGxWO4i+UKATQYmxh8EDOrDYzFp6Aexiy0Hff/H8umdsn6ZdA==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} peerDependencies: - '@angular/common': 20.3.2 - '@angular/core': 20.3.2 - '@angular/platform-browser': 20.3.2 + '@angular/common': 20.3.12 + '@angular/core': 20.3.12 + '@angular/platform-browser': 20.3.12 rxjs: ^6.5.3 || ^7.4.0 '@asamuzakjp/css-color@3.2.0': @@ -599,8 +599,8 @@ packages: resolution: {integrity: sha512-xgu/ySj2mTiUFmdE9yCMfBxLp4DHd5DwmbbD05YAuICfodYT3VvRxbrh81LGQ/8UpSdtMdfKMn3KouYDX59DGQ==} engines: {node: '>=6.9.0'} - '@babel/compat-data@7.28.4': - resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==} + '@babel/compat-data@7.28.5': + resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==} engines: {node: '>=6.9.0'} '@babel/core@7.27.1': @@ -611,16 +611,16 @@ packages: resolution: {integrity: sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==} engines: {node: '>=6.9.0'} - '@babel/core@7.28.4': - resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==} + '@babel/core@7.28.5': + resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==} engines: {node: '>=6.9.0'} '@babel/generator@7.27.1': resolution: {integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==} engines: {node: '>=6.9.0'} - '@babel/generator@7.28.3': - resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} + '@babel/generator@7.28.5': + resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==} engines: {node: '>=6.9.0'} '@babel/helper-annotate-as-pure@7.27.1': @@ -702,8 +702,8 @@ packages: resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.27.1': - resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} + '@babel/helper-validator-identifier@7.28.5': + resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} engines: {node: '>=6.9.0'} '@babel/helper-validator-option@7.27.1': @@ -718,8 +718,8 @@ packages: resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==} engines: {node: '>=6.9.0'} - '@babel/parser@7.28.4': - resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==} + '@babel/parser@7.28.5': + resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==} engines: {node: '>=6.0.0'} hasBin: true @@ -1187,12 +1187,12 @@ packages: resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} engines: {node: '>=6.9.0'} - '@babel/traverse@7.28.4': - resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==} + '@babel/traverse@7.28.5': + resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==} engines: {node: '>=6.9.0'} - '@babel/types@7.28.4': - resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==} + '@babel/types@7.28.5': + resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==} engines: {node: '>=6.9.0'} '@bcoe/v8-coverage@0.2.3': @@ -1257,12 +1257,6 @@ packages: '@emnapi/wasi-threads@1.1.0': resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==} - '@esbuild/aix-ppc64@0.25.10': - resolution: {integrity: sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [aix] - '@esbuild/aix-ppc64@0.25.5': resolution: {integrity: sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==} engines: {node: '>=18'} @@ -1281,12 +1275,6 @@ packages: cpu: [ppc64] os: [aix] - '@esbuild/android-arm64@0.25.10': - resolution: {integrity: sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [android] - '@esbuild/android-arm64@0.25.5': resolution: {integrity: sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==} engines: {node: '>=18'} @@ -1305,12 +1293,6 @@ packages: cpu: [arm64] os: [android] - '@esbuild/android-arm@0.25.10': - resolution: {integrity: sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==} - engines: {node: '>=18'} - cpu: [arm] - os: [android] - '@esbuild/android-arm@0.25.5': resolution: {integrity: sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==} engines: {node: '>=18'} @@ -1329,12 +1311,6 @@ packages: cpu: [arm] os: [android] - '@esbuild/android-x64@0.25.10': - resolution: {integrity: sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==} - engines: {node: '>=18'} - cpu: [x64] - os: [android] - '@esbuild/android-x64@0.25.5': resolution: {integrity: sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==} engines: {node: '>=18'} @@ -1353,12 +1329,6 @@ packages: cpu: [x64] os: [android] - '@esbuild/darwin-arm64@0.25.10': - resolution: {integrity: sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==} - engines: {node: '>=18'} - cpu: [arm64] - os: [darwin] - '@esbuild/darwin-arm64@0.25.5': resolution: {integrity: sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==} engines: {node: '>=18'} @@ -1377,12 +1347,6 @@ packages: cpu: [arm64] os: [darwin] - '@esbuild/darwin-x64@0.25.10': - resolution: {integrity: sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==} - engines: {node: '>=18'} - cpu: [x64] - os: [darwin] - '@esbuild/darwin-x64@0.25.5': resolution: {integrity: sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==} engines: {node: '>=18'} @@ -1401,12 +1365,6 @@ packages: cpu: [x64] os: [darwin] - '@esbuild/freebsd-arm64@0.25.10': - resolution: {integrity: sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==} - engines: {node: '>=18'} - cpu: [arm64] - os: [freebsd] - '@esbuild/freebsd-arm64@0.25.5': resolution: {integrity: sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==} engines: {node: '>=18'} @@ -1425,12 +1383,6 @@ packages: cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-x64@0.25.10': - resolution: {integrity: sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==} - engines: {node: '>=18'} - cpu: [x64] - os: [freebsd] - '@esbuild/freebsd-x64@0.25.5': resolution: {integrity: sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==} engines: {node: '>=18'} @@ -1449,12 +1401,6 @@ packages: cpu: [x64] os: [freebsd] - '@esbuild/linux-arm64@0.25.10': - resolution: {integrity: sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==} - engines: {node: '>=18'} - cpu: [arm64] - os: [linux] - '@esbuild/linux-arm64@0.25.5': resolution: {integrity: sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==} engines: {node: '>=18'} @@ -1473,12 +1419,6 @@ packages: cpu: [arm64] os: [linux] - '@esbuild/linux-arm@0.25.10': - resolution: {integrity: sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==} - engines: {node: '>=18'} - cpu: [arm] - os: [linux] - '@esbuild/linux-arm@0.25.5': resolution: {integrity: sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==} engines: {node: '>=18'} @@ -1497,12 +1437,6 @@ packages: cpu: [arm] os: [linux] - '@esbuild/linux-ia32@0.25.10': - resolution: {integrity: sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==} - engines: {node: '>=18'} - cpu: [ia32] - os: [linux] - '@esbuild/linux-ia32@0.25.5': resolution: {integrity: sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==} engines: {node: '>=18'} @@ -1521,12 +1455,6 @@ packages: cpu: [ia32] os: [linux] - '@esbuild/linux-loong64@0.25.10': - resolution: {integrity: sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==} - engines: {node: '>=18'} - cpu: [loong64] - os: [linux] - '@esbuild/linux-loong64@0.25.5': resolution: {integrity: sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==} engines: {node: '>=18'} @@ -1545,12 +1473,6 @@ packages: cpu: [loong64] os: [linux] - '@esbuild/linux-mips64el@0.25.10': - resolution: {integrity: sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==} - engines: {node: '>=18'} - cpu: [mips64el] - os: [linux] - '@esbuild/linux-mips64el@0.25.5': resolution: {integrity: sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==} engines: {node: '>=18'} @@ -1569,12 +1491,6 @@ packages: cpu: [mips64el] os: [linux] - '@esbuild/linux-ppc64@0.25.10': - resolution: {integrity: sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [linux] - '@esbuild/linux-ppc64@0.25.5': resolution: {integrity: sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==} engines: {node: '>=18'} @@ -1593,12 +1509,6 @@ packages: cpu: [ppc64] os: [linux] - '@esbuild/linux-riscv64@0.25.10': - resolution: {integrity: sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==} - engines: {node: '>=18'} - cpu: [riscv64] - os: [linux] - '@esbuild/linux-riscv64@0.25.5': resolution: {integrity: sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==} engines: {node: '>=18'} @@ -1617,12 +1527,6 @@ packages: cpu: [riscv64] os: [linux] - '@esbuild/linux-s390x@0.25.10': - resolution: {integrity: sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==} - engines: {node: '>=18'} - cpu: [s390x] - os: [linux] - '@esbuild/linux-s390x@0.25.5': resolution: {integrity: sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==} engines: {node: '>=18'} @@ -1641,12 +1545,6 @@ packages: cpu: [s390x] os: [linux] - '@esbuild/linux-x64@0.25.10': - resolution: {integrity: sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==} - engines: {node: '>=18'} - cpu: [x64] - os: [linux] - '@esbuild/linux-x64@0.25.5': resolution: {integrity: sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==} engines: {node: '>=18'} @@ -1665,12 +1563,6 @@ packages: cpu: [x64] os: [linux] - '@esbuild/netbsd-arm64@0.25.10': - resolution: {integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==} - engines: {node: '>=18'} - cpu: [arm64] - os: [netbsd] - '@esbuild/netbsd-arm64@0.25.5': resolution: {integrity: sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==} engines: {node: '>=18'} @@ -1689,12 +1581,6 @@ packages: cpu: [arm64] os: [netbsd] - '@esbuild/netbsd-x64@0.25.10': - resolution: {integrity: sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==} - engines: {node: '>=18'} - cpu: [x64] - os: [netbsd] - '@esbuild/netbsd-x64@0.25.5': resolution: {integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==} engines: {node: '>=18'} @@ -1713,12 +1599,6 @@ packages: cpu: [x64] os: [netbsd] - '@esbuild/openbsd-arm64@0.25.10': - resolution: {integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==} - engines: {node: '>=18'} - cpu: [arm64] - os: [openbsd] - '@esbuild/openbsd-arm64@0.25.5': resolution: {integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==} engines: {node: '>=18'} @@ -1737,12 +1617,6 @@ packages: cpu: [arm64] os: [openbsd] - '@esbuild/openbsd-x64@0.25.10': - resolution: {integrity: sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==} - engines: {node: '>=18'} - cpu: [x64] - os: [openbsd] - '@esbuild/openbsd-x64@0.25.5': resolution: {integrity: sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==} engines: {node: '>=18'} @@ -1761,12 +1635,6 @@ packages: cpu: [x64] os: [openbsd] - '@esbuild/openharmony-arm64@0.25.10': - resolution: {integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==} - engines: {node: '>=18'} - cpu: [arm64] - os: [openharmony] - '@esbuild/openharmony-arm64@0.25.9': resolution: {integrity: sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==} engines: {node: '>=18'} @@ -1779,12 +1647,6 @@ packages: cpu: [arm64] os: [openharmony] - '@esbuild/sunos-x64@0.25.10': - resolution: {integrity: sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==} - engines: {node: '>=18'} - cpu: [x64] - os: [sunos] - '@esbuild/sunos-x64@0.25.5': resolution: {integrity: sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==} engines: {node: '>=18'} @@ -1803,12 +1665,6 @@ packages: cpu: [x64] os: [sunos] - '@esbuild/win32-arm64@0.25.10': - resolution: {integrity: sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==} - engines: {node: '>=18'} - cpu: [arm64] - os: [win32] - '@esbuild/win32-arm64@0.25.5': resolution: {integrity: sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==} engines: {node: '>=18'} @@ -1827,12 +1683,6 @@ packages: cpu: [arm64] os: [win32] - '@esbuild/win32-ia32@0.25.10': - resolution: {integrity: sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==} - engines: {node: '>=18'} - cpu: [ia32] - os: [win32] - '@esbuild/win32-ia32@0.25.5': resolution: {integrity: sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==} engines: {node: '>=18'} @@ -1851,12 +1701,6 @@ packages: cpu: [ia32] os: [win32] - '@esbuild/win32-x64@0.25.10': - resolution: {integrity: sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==} - engines: {node: '>=18'} - cpu: [x64] - os: [win32] - '@esbuild/win32-x64@0.25.5': resolution: {integrity: sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==} engines: {node: '>=18'} @@ -1933,12 +1777,12 @@ packages: resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} engines: {node: '>=18.18'} - '@inquirer/ansi@1.0.0': - resolution: {integrity: sha512-JWaTfCxI1eTmJ1BIv86vUfjVatOdxwD0DAVKYevY8SazeUUZtW+tNbsdejVO1GYE0GXJW1N1ahmiC3TFd+7wZA==} + '@inquirer/ansi@1.0.2': + resolution: {integrity: sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==} engines: {node: '>=18'} - '@inquirer/checkbox@4.2.4': - resolution: {integrity: sha512-2n9Vgf4HSciFq8ttKXk+qy+GsyTXPV1An6QAwe/8bkbbqvG4VW1I/ZY1pNu2rf+h9bdzMLPbRSfcNxkHBy/Ydw==} + '@inquirer/checkbox@4.3.2': + resolution: {integrity: sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -1964,8 +1808,8 @@ packages: '@types/node': optional: true - '@inquirer/confirm@5.1.18': - resolution: {integrity: sha512-MilmWOzHa3Ks11tzvuAmFoAd/wRuaP3SwlT1IZhyMke31FKLxPiuDWcGXhU+PKveNOpAc4axzAgrgxuIJJRmLw==} + '@inquirer/confirm@5.1.21': + resolution: {integrity: sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -1973,8 +1817,8 @@ packages: '@types/node': optional: true - '@inquirer/core@10.2.2': - resolution: {integrity: sha512-yXq/4QUnk4sHMtmbd7irwiepjB8jXU0kkFRL4nr/aDBA2mDz13cMakEWdDwX3eSCTkk03kwcndD1zfRAIlELxA==} + '@inquirer/core@10.3.2': + resolution: {integrity: sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -1982,8 +1826,8 @@ packages: '@types/node': optional: true - '@inquirer/editor@4.2.20': - resolution: {integrity: sha512-7omh5y5bK672Q+Brk4HBbnHNowOZwrb/78IFXdrEB9PfdxL3GudQyDk8O9vQ188wj3xrEebS2M9n18BjJoI83g==} + '@inquirer/editor@4.2.23': + resolution: {integrity: sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -1991,8 +1835,8 @@ packages: '@types/node': optional: true - '@inquirer/expand@4.0.20': - resolution: {integrity: sha512-Dt9S+6qUg94fEvgn54F2Syf0Z3U8xmnBI9ATq2f5h9xt09fs2IJXSCIXyyVHwvggKWFXEY/7jATRo2K6Dkn6Ow==} + '@inquirer/expand@4.0.23': + resolution: {integrity: sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -2000,8 +1844,8 @@ packages: '@types/node': optional: true - '@inquirer/external-editor@1.0.2': - resolution: {integrity: sha512-yy9cOoBnx58TlsPrIxauKIFQTiyH+0MK4e97y4sV9ERbI+zDxw7i2hxHLCIEGIE/8PPvDxGhgzIOTSOWcs6/MQ==} + '@inquirer/external-editor@1.0.3': + resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -2009,12 +1853,12 @@ packages: '@types/node': optional: true - '@inquirer/figures@1.0.13': - resolution: {integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==} + '@inquirer/figures@1.0.15': + resolution: {integrity: sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==} engines: {node: '>=18'} - '@inquirer/input@4.2.4': - resolution: {integrity: sha512-cwSGpLBMwpwcZZsc6s1gThm0J+it/KIJ+1qFL2euLmSKUMGumJ5TcbMgxEjMjNHRGadouIYbiIgruKoDZk7klw==} + '@inquirer/input@4.3.1': + resolution: {integrity: sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -2022,8 +1866,8 @@ packages: '@types/node': optional: true - '@inquirer/number@3.0.20': - resolution: {integrity: sha512-bbooay64VD1Z6uMfNehED2A2YOPHSJnQLs9/4WNiV/EK+vXczf/R988itL2XLDGTgmhMF2KkiWZo+iEZmc4jqg==} + '@inquirer/number@3.0.23': + resolution: {integrity: sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -2031,8 +1875,8 @@ packages: '@types/node': optional: true - '@inquirer/password@4.0.20': - resolution: {integrity: sha512-nxSaPV2cPvvoOmRygQR+h0B+Av73B01cqYLcr7NXcGXhbmsYfUb8fDdw2Us1bI2YsX+VvY7I7upgFYsyf8+Nug==} + '@inquirer/password@4.0.23': + resolution: {integrity: sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -2049,8 +1893,8 @@ packages: '@types/node': optional: true - '@inquirer/rawlist@4.1.8': - resolution: {integrity: sha512-CQ2VkIASbgI2PxdzlkeeieLRmniaUU1Aoi5ggEdm6BIyqopE9GuDXdDOj9XiwOqK5qm72oI2i6J+Gnjaa26ejg==} + '@inquirer/rawlist@4.1.11': + resolution: {integrity: sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -2058,8 +1902,8 @@ packages: '@types/node': optional: true - '@inquirer/search@3.1.3': - resolution: {integrity: sha512-D5T6ioybJJH0IiSUK/JXcoRrrm8sXwzrVMjibuPs+AgxmogKslaafy1oxFiorNI4s3ElSkeQZbhYQgLqiL8h6Q==} + '@inquirer/search@3.2.2': + resolution: {integrity: sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -2067,8 +1911,8 @@ packages: '@types/node': optional: true - '@inquirer/select@4.3.4': - resolution: {integrity: sha512-Qp20nySRmfbuJBBsgPU7E/cL62Hf250vMZRzYDcBHty2zdD1kKCnoDFWRr0WO2ZzaXp3R7a4esaVGJUx0E6zvA==} + '@inquirer/select@4.4.2': + resolution: {integrity: sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -2076,8 +1920,8 @@ packages: '@types/node': optional: true - '@inquirer/type@3.0.8': - resolution: {integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==} + '@inquirer/type@3.0.10': + resolution: {integrity: sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -2499,9 +2343,6 @@ packages: '@napi-rs/wasm-runtime@0.2.12': resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==} - '@napi-rs/wasm-runtime@1.0.5': - resolution: {integrity: sha512-TBr9Cf9onSAS2LQ2+QHx6XcC6h9+RIzJgbqG3++9TUZSH204AwEy5jg3BTQ0VATsyoGj4ee49tN/y6rvaOOtcg==} - '@ng-bootstrap/ng-bootstrap@19.0.1': resolution: {integrity: sha512-1lErAkwh0F+gWkzpiddViY4GfA9LVXkwLpgBsV9Mb3IC0zo6WNkY8WxCC+LqajirBTu20DCkZSqeRzrwaVLpZw==} peerDependencies: @@ -2512,8 +2353,8 @@ packages: '@popperjs/core': ^2.11.8 rxjs: ^6.5.3 || ^7.4.0 - '@ng-select/ng-select@20.6.3': - resolution: {integrity: sha512-+aX2l3OshyPsyMCAuiA3ND5c6X1DG5jQjdlP8PBIyYEoQWlxEcgJWrMsPa7mHVFRpp+5KZZhnXhyosUE4CEc3w==} + '@ng-select/ng-select@20.7.0': + resolution: {integrity: sha512-tOAhUnb4LFjTnn9gi6e6tSrUDi1GqCzjwnubBIxxa2XFHXqGOjYlqIMkPcSRByF4G9olzdZM38nLUtZOO3YKqg==} engines: {node: ^22.12.0 || >=24.0.0} peerDependencies: '@angular/common': ^20.0.0 @@ -2634,9 +2475,6 @@ packages: '@octokit/types@13.10.0': resolution: {integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==} - '@oxc-project/types@0.89.0': - resolution: {integrity: sha512-yuo+ECPIW5Q9mSeNmCDC2im33bfKuwW18mwkaHMQh8KakHYDzj4ci/q7wxf2qS3dMlVVCIyrs3kFtH5LmnlYnw==} - '@parcel/watcher-android-arm64@2.5.1': resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==} engines: {node: '>= 10.0.0'} @@ -2735,92 +2573,6 @@ packages: '@popperjs/core@2.11.8': resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} - '@rolldown/binding-android-arm64@1.0.0-beta.38': - resolution: {integrity: sha512-AE3HFQrjWCKLFZD1Vpiy+qsqTRwwoil1oM5WsKPSmfQ5fif/A+ZtOZetF32erZdsR7qyvns6qHEteEsF6g6rsQ==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [arm64] - os: [android] - - '@rolldown/binding-darwin-arm64@1.0.0-beta.38': - resolution: {integrity: sha512-RaoWOKc0rrFsVmKOjQpebMY6c6/I7GR1FBc25v7L/R7NlM0166mUotwGEv7vxu7ruXH4SJcFeVrfADFUUXUmmQ==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [arm64] - os: [darwin] - - '@rolldown/binding-darwin-x64@1.0.0-beta.38': - resolution: {integrity: sha512-Ymojqc2U35iUc8NFU2XX1WQPfBRRHN6xHcrxAf9WS8BFFBn8pDrH5QPvH1tYs3lDkw6UGGbanr1RGzARqdUp1g==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [x64] - os: [darwin] - - '@rolldown/binding-freebsd-x64@1.0.0-beta.38': - resolution: {integrity: sha512-0ermTQ//WzSI0nOL3z/LUWMNiE9xeM5cLGxjewPFEexqxV/0uM8/lNp9QageQ8jfc/VO1OURsGw34HYO5PaL8w==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [x64] - os: [freebsd] - - '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.38': - resolution: {integrity: sha512-GADxzVUTCTp6EWI52831A29Tt7PukFe94nhg/SUsfkI33oTiNQtPxyLIT/3oRegizGuPSZSlrdBurkjDwxyEUQ==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [arm] - os: [linux] - - '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.38': - resolution: {integrity: sha512-SKO7Exl5Yem/OSNoA5uLHzyrptUQ8Hg70kHDxuwEaH0+GUg+SQe9/7PWmc4hFKBMrJGdQtii8WZ0uIz9Dofg5Q==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [arm64] - os: [linux] - - '@rolldown/binding-linux-arm64-musl@1.0.0-beta.38': - resolution: {integrity: sha512-SOo6+WqhXPBaShLxLT0eCgH17d3Yu1lMAe4mFP0M9Bvr/kfMSOPQXuLxBcbBU9IFM9w3N6qP9xWOHO+oUJvi8Q==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [arm64] - os: [linux] - - '@rolldown/binding-linux-x64-gnu@1.0.0-beta.38': - resolution: {integrity: sha512-yvsQ3CyrodOX+lcoi+lejZGCOvJZa9xTsNB8OzpMDmHeZq3QzJfpYjXSAS6vie70fOkLVJb77UqYO193Cl8XBQ==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [x64] - os: [linux] - - '@rolldown/binding-linux-x64-musl@1.0.0-beta.38': - resolution: {integrity: sha512-84qzKMwUwikfYeOuJ4Kxm/3z15rt0nFGGQArHYIQQNSTiQdxGHxOkqXtzPFqrVfBJUdxBAf+jYzR1pttFJuWyg==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [x64] - os: [linux] - - '@rolldown/binding-openharmony-arm64@1.0.0-beta.38': - resolution: {integrity: sha512-QrNiWlce01DYH0rL8K3yUBu+lNzY+B0DyCbIc2Atan6/S6flxOL0ow5DLQvMamOI/oKhrJ4xG+9MkMb9dDHbLQ==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [arm64] - os: [openharmony] - - '@rolldown/binding-wasm32-wasi@1.0.0-beta.38': - resolution: {integrity: sha512-fnLtHyjwEsG4/aNV3Uv3Qd1ZbdH+CopwJNoV0RgBqrcQB8V6/Qdikd5JKvnO23kb3QvIpP+dAMGZMv1c2PJMzw==} - engines: {node: '>=14.0.0'} - cpu: [wasm32] - - '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.38': - resolution: {integrity: sha512-19cTfnGedem+RY+znA9J6ARBOCEFD4YSjnx0p5jiTm9tR6pHafRfFIfKlTXhun+NL0WWM/M0eb2IfPPYUa8+wg==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [arm64] - os: [win32] - - '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.38': - resolution: {integrity: sha512-HcICm4YzFJZV+fI0O0bFLVVlsWvRNo/AB9EfUXvNYbtAxakCnQZ15oq22deFdz6sfi9Y4/SagH2kPU723dhCFA==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [ia32] - os: [win32] - - '@rolldown/binding-win32-x64-msvc@1.0.0-beta.38': - resolution: {integrity: sha512-4Qx6cgEPXLb0XsCyLoQcUgYBpfL0sjugftob+zhUH0EOk/NVCAIT+h0NJhY+jn7pFpeKxhNMqhvTNx3AesxIAQ==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [x64] - os: [win32] - - '@rolldown/pluginutils@1.0.0-beta.38': - resolution: {integrity: sha512-N/ICGKleNhA5nc9XXQG/kkKHJ7S55u0x0XUJbbkmdCnFuoRkM1Il12q9q0eX19+M7KKUEPw/daUPIRnxhcxAIw==} - '@rollup/rollup-android-arm-eabi@4.40.2': resolution: {integrity: sha512-JkdNEq+DFxZfUwxvB58tHMHBHVgX23ew41g1OQinthJ+ryhdRk67O31S7sYw8u2lTjHUPFxwar07BBt1KHp/hg==} cpu: [arm] @@ -3031,8 +2783,8 @@ packages: cpu: [x64] os: [win32] - '@schematics/angular@20.3.3': - resolution: {integrity: sha512-lqIP1pNKp8yaqd663R3graZWaTBjXH+Cl72BQl1Ghl7lFGReZJALr4GiSMiBR9r30Epklcw5TwOSi+Bs4UKmbw==} + '@schematics/angular@20.3.10': + resolution: {integrity: sha512-F9ntS2CElpoWlENf4b03nwdTcN9Ri0Nb4SAE/pfRw3In09h2UHxYyf1ex9jqQt70xltDg4wvyuc3mMs+JlSx9A==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} '@sigstore/bundle@3.1.0': @@ -3536,8 +3288,8 @@ packages: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} - ansi-escapes@7.1.1: - resolution: {integrity: sha512-Zhl0ErHcSRUaVfGUeUdDuLgpkEo8KIFjB4Y9uAc46ScOpdDiU1Dbyplh7qWJeJ/ZHpbyMSM26+X3BySgnIz40Q==} + ansi-escapes@7.2.0: + resolution: {integrity: sha512-g6LhBsl+GBPRWGWsBtutpzBYuIIdBkLEvad5C/va/74Db018+5TZiyA26cZJAr3Rft5lprVqOIPxf5Vid6tqAw==} engines: {node: '>=18'} ansi-html-community@0.0.8: @@ -3565,10 +3317,6 @@ packages: resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} engines: {node: '>=12'} - ansis@4.2.0: - resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==} - engines: {node: '>=14'} - anymatch@3.1.3: resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} @@ -3656,10 +3404,6 @@ packages: base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - baseline-browser-mapping@2.8.10: - resolution: {integrity: sha512-uLfgBi+7IBNay8ECBO2mVMGZAc1VgZWEChxm4lv+TobGdG82LnXMjuNGo/BSSZZL4UmkWhxEHP2f5ziLNwGWMA==} - hasBin: true - baseline-browser-mapping@2.8.29: resolution: {integrity: sha512-sXdt2elaVnhpDNRDz+1BDx1JQoJRuNk7oVlAlbGiFkLikHCAQiccexF/9e91zVi6RCgqspl04aP+6Cnl9zRLrA==} hasBin: true @@ -3717,11 +3461,6 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.26.3: - resolution: {integrity: sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - browserslist@4.28.0: resolution: {integrity: sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} @@ -3772,9 +3511,6 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001746: - resolution: {integrity: sha512-eA7Ys/DGw+pnkWWSE/id29f2IcPHVoE8wxtvE5JdvD2V28VTDPy1yEeo11Guz0sJ4ZeGRcm3uaTcAqK1LXaphA==} - caniuse-lite@1.0.30001755: resolution: {integrity: sha512-44V+Jm6ctPj7R52Na4TLi3Zri4dWUljJd+RDm+j8LtNCc/ihLCT+X1TzoOAkRETEWqjuLnh9581Tl80FvK7jVA==} @@ -3794,8 +3530,8 @@ packages: resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} engines: {node: '>=10'} - chardet@2.1.0: - resolution: {integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==} + chardet@2.1.1: + resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==} chokidar@3.6.0: resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} @@ -4106,8 +3842,8 @@ packages: engines: {node: '>=0.10'} hasBin: true - detect-libc@2.1.1: - resolution: {integrity: sha512-ecqj/sy1jcK1uWrwpR67UhYrIFQ+5WlGxth34WquCbamhFA6hkkwiu37o6J5xCHdo1oixJRfVRw+ywV+Hq/0Aw==} + detect-libc@2.1.2: + resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} engines: {node: '>=8'} detect-newline@3.1.0: @@ -4157,9 +3893,6 @@ packages: ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - electron-to-chromium@1.5.228: - resolution: {integrity: sha512-nxkiyuqAn4MJ1QbobwqJILiDtu/jk14hEAWaMiJmNPh1Z+jqoFlBFZjdXwLWGeVSeu9hGLg6+2G9yJaW8rBIFA==} - electron-to-chromium@1.5.255: resolution: {integrity: sha512-Z9oIp4HrFF/cZkDPMpz2XSuVpc1THDpT4dlmATFlJUIBVCy9Vap5/rIXsASP1CscBacBqhabwh8vLctqBwEerQ==} @@ -4167,8 +3900,8 @@ packages: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} engines: {node: '>=12'} - emoji-regex@10.5.0: - resolution: {integrity: sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==} + emoji-regex@10.6.0: + resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==} emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -4254,11 +3987,6 @@ packages: engines: {node: '>=18'} hasBin: true - esbuild@0.25.10: - resolution: {integrity: sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==} - engines: {node: '>=18'} - hasBin: true - esbuild@0.25.5: resolution: {integrity: sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==} engines: {node: '>=18'} @@ -4391,8 +4119,8 @@ packages: resolution: {integrity: sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - exponential-backoff@3.1.2: - resolution: {integrity: sha512-8QxYTVXUkuy7fIIoitQkPwGonB8F3Zj8eEO8Sqg9Zv/bkI7RJAzowee4gr81Hak/dUTpA2Z7VfQgoijjPNlUZA==} + exponential-backoff@3.1.3: + resolution: {integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==} express-rate-limit@7.5.1: resolution: {integrity: sha512-7iN8iPMDzOMHPUYllBEsQdWVB6fPDMPqwjBaFrgr4Jgr/+okjvzAy+UHlYYL/Vs0OsOrMkwS6PJDkFlJwoxUnw==} @@ -4586,6 +4314,10 @@ packages: resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} hasBin: true + glob@10.5.0: + resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==} + hasBin: true + glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} deprecated: Glob versions prior to v9 are no longer supported @@ -4632,8 +4364,8 @@ packages: resolution: {integrity: sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==} engines: {node: ^18.17.0 || >=20.5.0} - hosted-git-info@9.0.0: - resolution: {integrity: sha512-gEf705MZLrDPkbbhi8PnoO4ZwYgKoNL+ISZ3AjZMht2r3N5tuTwncyDi6Fv2/qDnMmZxgs0yI8WDOyR8q3G+SQ==} + hosted-git-info@9.0.2: + resolution: {integrity: sha512-M422h7o/BR3rmCQ8UHi7cyyMqKltdP9Uo+J2fXK+RSAY+wTcKOIRyhTuKv4qn+DJf3g+PL890AzId5KZpX+CBg==} engines: {node: ^20.17.0 || >=22.9.0} hpack.js@2.1.6: @@ -4749,8 +4481,8 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - immutable@5.1.3: - resolution: {integrity: sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==} + immutable@5.1.4: + resolution: {integrity: sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==} import-fresh@3.3.1: resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} @@ -4782,8 +4514,8 @@ packages: resolution: {integrity: sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==} engines: {node: ^18.17.0 || >=20.5.0} - ip-address@10.0.1: - resolution: {integrity: sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==} + ip-address@10.1.0: + resolution: {integrity: sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==} engines: {node: '>= 12'} ipaddr.js@1.9.1: @@ -5595,8 +5327,8 @@ packages: '@angular/common': '>=19.0.0-0' '@angular/core': '>=19.0.0-0' - ngx-cookie-service@20.1.0: - resolution: {integrity: sha512-g7Ddq8097qujmJfoEK27H12KLEpuO4SBPhoOYQ2kmLMSvz65vRrSKVwzOxdc75cFLQPW45Jfyyg3LoMTjKW0uA==} + ngx-cookie-service@20.1.1: + resolution: {integrity: sha512-jGjjIqu+Kt8De6YjDqTQOaUHKB7gYs0eaDuLyXfNhfKnA78lA7D7oWcaIzjkmXhRqTnh2/ex1UHmZHN9MX0yoQ==} peerDependencies: '@angular/common': ^20.0.0 '@angular/core': ^20.0.0 @@ -5640,17 +5372,14 @@ packages: resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==} hasBin: true - node-gyp@11.4.2: - resolution: {integrity: sha512-3gD+6zsrLQH7DyYOUIutaauuXrcyxeTPyQuZQCQoNPZMHMMS5m4y0xclNpvYzoK3VNzuyxT6eF4mkIL4WSZ1eQ==} + node-gyp@11.5.0: + resolution: {integrity: sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ==} engines: {node: ^18.17.0 || >=20.5.0} hasBin: true node-int64@0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - node-releases@2.0.21: - resolution: {integrity: sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==} - node-releases@2.0.27: resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==} @@ -5687,8 +5416,8 @@ packages: resolution: {integrity: sha512-+t2etZAGcB7TbbLHfDwooV9ppB2LhhcT6A+L9cahsf9mEUAoQ6CktLEVvEnpD0N5CkX7zJqnPGaFtoQDy9EkHQ==} engines: {node: ^20.17.0 || >=22.9.0} - npm-packlist@10.0.2: - resolution: {integrity: sha512-DrIWNiWT0FTdDRjGOYfEEZUNe1IzaSZ+up7qBTKnrQDySpdmuOQvytrqQlpK5QrCA4IThMvL4wTumqaa1ZvVIQ==} + npm-packlist@10.0.3: + resolution: {integrity: sha512-zPukTwJMOu5X5uvm0fztwS5Zxyvmk38H/LfidkOMt3gbZVCyro2cD/ETzwzVPcWZA3JOyPznfUN/nkyFiyUbxg==} engines: {node: ^20.17.0 || >=22.9.0} npm-pick-manifest@10.0.0: @@ -5770,8 +5499,8 @@ packages: resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} engines: {node: '>=10'} - p-map@7.0.3: - resolution: {integrity: sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==} + p-map@7.0.4: + resolution: {integrity: sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==} engines: {node: '>=18'} p-retry@6.2.1: @@ -6004,6 +5733,10 @@ packages: resolution: {integrity: sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==} engines: {node: ^18.17.0 || >=20.5.0} + proc-log@6.0.0: + resolution: {integrity: sha512-KG/XsTDN901PNfPfAMmj6N/Ywg9tM+bHK8pAz+27fS4N4Pcr+4zoYBOcGSBu6ceXYNPxkLpa4ohtfxV1XcLAfA==} + engines: {node: ^20.17.0 || >=22.9.0} + process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} @@ -6138,6 +5871,11 @@ packages: engines: {node: '>= 0.4'} hasBin: true + resolve@1.22.11: + resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==} + engines: {node: '>= 0.4'} + hasBin: true + restore-cursor@5.1.0: resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} engines: {node: '>=18'} @@ -6157,11 +5895,6 @@ packages: rfdc@1.4.1: resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} - rolldown@1.0.0-beta.38: - resolution: {integrity: sha512-58frPNX55Je1YsyrtPJv9rOSR3G5efUZpRqok94Efsj0EUa8dnqJV3BldShyI7A+bVPleucOtzXHwVpJRcR0kQ==} - engines: {node: ^20.19.0 || >=22.12.0} - hasBin: true - rollup@4.40.2: resolution: {integrity: sha512-tfUOg6DTP4rhQ3VjOO6B4wyrJnGOX85requAXvqYTHsOgb2TFJdZ3aWpT8W2kPoypSGP7dZUyzxJ9ee4buM5Fg==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} @@ -6531,8 +6264,8 @@ packages: resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} engines: {node: '>=10'} - tar@7.5.1: - resolution: {integrity: sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==} + tar@7.5.2: + resolution: {integrity: sha512-7NyxrTE4Anh8km8iEy7o0QYPs+0JKBTj5ZaqHg6B39erLg0qYXN3BijtShwbsNSvQ+LN75+KV+C4QR/f6Gwnpg==} engines: {node: '>=18'} terser-webpack-plugin@5.3.14: @@ -6808,12 +6541,6 @@ packages: unrs-resolver@1.11.1: resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==} - update-browserslist-db@1.1.3: - resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - update-browserslist-db@1.1.4: resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==} hasBin: true @@ -6902,8 +6629,8 @@ packages: yaml: optional: true - vite@7.1.5: - resolution: {integrity: sha512-4cKBO9wR75r0BeIWWWId9XK9Lj6La5X846Zw9dFfzMRw38IlTk2iCcUt6hsyiDRcPidc55ZParFYDXi0nXOeLQ==} + vite@7.1.11: + resolution: {integrity: sha512-uzcxnSDVjAopEUjljkWh8EIrg6tlzrjFUfMcR1EVsRDGwf/ccef0qQPRyOrROwhrTDaApueq+ja+KLPlzR/zdg==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: @@ -7312,7 +7039,7 @@ snapshots: '@angular-builders/common@4.0.0(@types/node@24.10.1)(chokidar@4.0.3)(typescript@5.8.3)': dependencies: - '@angular-devkit/core': 20.3.3(chokidar@4.0.3) + '@angular-devkit/core': 20.3.10(chokidar@4.0.3) ts-node: 10.9.2(@types/node@24.10.1)(typescript@5.8.3) tsconfig-paths: 4.2.0 transitivePeerDependencies: @@ -7322,14 +7049,14 @@ snapshots: - chokidar - typescript - '@angular-builders/custom-webpack@20.0.0(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0)': + '@angular-builders/custom-webpack@20.0.0(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0)': dependencies: '@angular-builders/common': 4.0.0(@types/node@24.10.1)(chokidar@4.0.3)(typescript@5.8.3) '@angular-devkit/architect': 0.2000.4(chokidar@4.0.3) - '@angular-devkit/build-angular': 20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) - '@angular-devkit/core': 20.3.3(chokidar@4.0.3) - '@angular/build': 20.3.3(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) - '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) + '@angular-devkit/build-angular': 20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) + '@angular-devkit/core': 20.3.10(chokidar@4.0.3) + '@angular/build': 20.3.10(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) + '@angular/compiler-cli': 20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3) lodash: 4.17.21 webpack-merge: 6.0.1 transitivePeerDependencies: @@ -7376,17 +7103,17 @@ snapshots: - webpack-cli - yaml - '@angular-builders/jest@20.0.0(a0f61c2d4c2deba6c0f5abd5d60664ab)': + '@angular-builders/jest@20.0.0(f235def4c8e1307a0f702d1be69d225c)': dependencies: '@angular-builders/common': 4.0.0(@types/node@24.10.1)(chokidar@4.0.3)(typescript@5.8.3) '@angular-devkit/architect': 0.2000.4(chokidar@4.0.3) - '@angular-devkit/build-angular': 20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) - '@angular-devkit/core': 20.3.3(chokidar@4.0.3) - '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/platform-browser-dynamic': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))) + '@angular-devkit/build-angular': 20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) + '@angular-devkit/core': 20.3.10(chokidar@4.0.3) + '@angular/compiler-cli': 20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/platform-browser-dynamic': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))) jest: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) - jest-preset-angular: 14.6.0(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser-dynamic@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))))(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(canvas@3.0.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jsdom@26.1.0(canvas@3.0.0))(typescript@5.8.3) + jest-preset-angular: 14.6.0(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser-dynamic@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))))(@babel/core@7.28.5)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.5))(canvas@3.0.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jsdom@26.1.0(canvas@3.0.0))(typescript@5.8.3) lodash: 4.17.21 transitivePeerDependencies: - '@babel/core' @@ -7411,21 +7138,21 @@ snapshots: transitivePeerDependencies: - chokidar - '@angular-devkit/architect@0.2003.3(chokidar@4.0.3)': + '@angular-devkit/architect@0.2003.10(chokidar@4.0.3)': dependencies: - '@angular-devkit/core': 20.3.3(chokidar@4.0.3) + '@angular-devkit/core': 20.3.10(chokidar@4.0.3) rxjs: 7.8.2 transitivePeerDependencies: - chokidar - '@angular-devkit/build-angular@20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0)': + '@angular-devkit/build-angular@20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.2000.4(chokidar@4.0.3) '@angular-devkit/build-webpack': 0.2000.4(chokidar@4.0.3)(webpack-dev-server@5.2.1(webpack@5.102.1))(webpack@5.99.8(esbuild@0.25.5)) '@angular-devkit/core': 20.0.4(chokidar@4.0.3) - '@angular/build': 20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) - '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) + '@angular/build': 20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) + '@angular/compiler-cli': 20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3) '@babel/core': 7.27.1 '@babel/generator': 7.27.1 '@babel/helper-annotate-as-pure': 7.27.1 @@ -7436,8 +7163,8 @@ snapshots: '@babel/preset-env': 7.27.2(@babel/core@7.27.1) '@babel/runtime': 7.27.1 '@discoveryjs/json-ext': 0.6.3 - '@ngtools/webpack': 20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(typescript@5.8.3)(webpack@5.99.8(esbuild@0.25.5)) - '@vitejs/plugin-basic-ssl': 2.0.0(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0)) + '@ngtools/webpack': 20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(typescript@5.8.3)(webpack@5.99.8(esbuild@0.25.5)) + '@vitejs/plugin-basic-ssl': 2.0.0(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0)) ansi-colors: 4.1.3 autoprefixer: 10.4.21(postcss@8.5.3) babel-loader: 10.0.0(@babel/core@7.27.1)(webpack@5.99.8(esbuild@0.25.5)) @@ -7478,9 +7205,9 @@ snapshots: webpack-merge: 6.0.1 webpack-subresource-integrity: 5.1.0(webpack@5.99.8(esbuild@0.25.5)) optionalDependencies: - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/localize': 20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2) - '@angular/platform-browser': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/localize': 20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12) + '@angular/platform-browser': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) esbuild: 0.25.5 jest: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) jest-environment-jsdom: 30.2.0(canvas@3.0.0) @@ -7528,7 +7255,7 @@ snapshots: optionalDependencies: chokidar: 4.0.3 - '@angular-devkit/core@20.3.3(chokidar@4.0.3)': + '@angular-devkit/core@20.3.10(chokidar@4.0.3)': dependencies: ajv: 8.17.1 ajv-formats: 3.0.1(ajv@8.17.1) @@ -7539,9 +7266,9 @@ snapshots: optionalDependencies: chokidar: 4.0.3 - '@angular-devkit/schematics@20.3.3(chokidar@4.0.3)': + '@angular-devkit/schematics@20.3.10(chokidar@4.0.3)': dependencies: - '@angular-devkit/core': 20.3.3(chokidar@4.0.3) + '@angular-devkit/core': 20.3.10(chokidar@4.0.3) jsonc-parser: 3.3.1 magic-string: 0.30.17 ora: 8.2.0 @@ -7549,22 +7276,22 @@ snapshots: transitivePeerDependencies: - chokidar - '@angular-eslint/builder@20.3.0(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/builder@20.6.0(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: - '@angular-devkit/architect': 0.2003.3(chokidar@4.0.3) - '@angular-devkit/core': 20.3.3(chokidar@4.0.3) + '@angular-devkit/architect': 0.2003.10(chokidar@4.0.3) + '@angular-devkit/core': 20.3.10(chokidar@4.0.3) eslint: 9.39.1(jiti@1.21.7) typescript: 5.8.3 transitivePeerDependencies: - chokidar - '@angular-eslint/bundled-angular-compiler@20.3.0': {} + '@angular-eslint/bundled-angular-compiler@20.6.0': {} - '@angular-eslint/eslint-plugin-template@20.3.0(@angular-eslint/template-parser@20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/eslint-plugin-template@20.6.0(@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: - '@angular-eslint/bundled-angular-compiler': 20.3.0 - '@angular-eslint/template-parser': 20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) - '@angular-eslint/utils': 20.3.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@angular-eslint/bundled-angular-compiler': 20.6.0 + '@angular-eslint/template-parser': 20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@angular-eslint/utils': 20.6.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@typescript-eslint/types': 8.47.0 '@typescript-eslint/utils': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) aria-query: 5.3.2 @@ -7572,23 +7299,23 @@ snapshots: eslint: 9.39.1(jiti@1.21.7) typescript: 5.8.3 - '@angular-eslint/eslint-plugin@20.3.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/eslint-plugin@20.6.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: - '@angular-eslint/bundled-angular-compiler': 20.3.0 - '@angular-eslint/utils': 20.3.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@angular-eslint/bundled-angular-compiler': 20.6.0 + '@angular-eslint/utils': 20.6.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@typescript-eslint/utils': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) eslint: 9.39.1(jiti@1.21.7) ts-api-utils: 2.1.0(typescript@5.8.3) typescript: 5.8.3 - '@angular-eslint/schematics@20.3.0(@angular-eslint/template-parser@20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/schematics@20.6.0(@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: - '@angular-devkit/core': 20.3.3(chokidar@4.0.3) - '@angular-devkit/schematics': 20.3.3(chokidar@4.0.3) - '@angular-eslint/eslint-plugin': 20.3.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) - '@angular-eslint/eslint-plugin-template': 20.3.0(@angular-eslint/template-parser@20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@angular-devkit/core': 20.3.10(chokidar@4.0.3) + '@angular-devkit/schematics': 20.3.10(chokidar@4.0.3) + '@angular-eslint/eslint-plugin': 20.6.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@angular-eslint/eslint-plugin-template': 20.6.0(@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) ignore: 7.0.5 - semver: 7.7.2 + semver: 7.7.3 strip-json-comments: 3.1.1 transitivePeerDependencies: - '@angular-eslint/template-parser' @@ -7598,26 +7325,26 @@ snapshots: - eslint - typescript - '@angular-eslint/template-parser@20.3.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: - '@angular-eslint/bundled-angular-compiler': 20.3.0 + '@angular-eslint/bundled-angular-compiler': 20.6.0 eslint: 9.39.1(jiti@1.21.7) eslint-scope: 8.4.0 typescript: 5.8.3 - '@angular-eslint/utils@20.3.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/utils@20.6.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: - '@angular-eslint/bundled-angular-compiler': 20.3.0 + '@angular-eslint/bundled-angular-compiler': 20.6.0 '@typescript-eslint/utils': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) eslint: 9.39.1(jiti@1.21.7) typescript: 5.8.3 - '@angular/build@20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0)': + '@angular/build@20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.2000.4(chokidar@4.0.3) - '@angular/compiler': 20.3.2 - '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) + '@angular/compiler': 20.3.12 + '@angular/compiler-cli': 20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3) '@babel/core': 7.27.1 '@babel/helper-annotate-as-pure': 7.27.1 '@babel/helper-split-export-declaration': 7.24.7 @@ -7645,9 +7372,9 @@ snapshots: vite: 6.3.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.88.0)(terser@5.39.1)(yaml@2.7.0) watchpack: 2.4.2 optionalDependencies: - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/localize': 20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2) - '@angular/platform-browser': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/localize': 20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12) + '@angular/platform-browser': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) less: 4.3.0 lmdb: 3.3.0 postcss: 8.5.3 @@ -7664,19 +7391,19 @@ snapshots: - tsx - yaml - '@angular/build@20.3.3(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0)': + '@angular/build@20.3.10(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0)': dependencies: '@ampproject/remapping': 2.3.0 - '@angular-devkit/architect': 0.2003.3(chokidar@4.0.3) - '@angular/compiler': 20.3.2 - '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) + '@angular-devkit/architect': 0.2003.10(chokidar@4.0.3) + '@angular/compiler': 20.3.12 + '@angular/compiler-cli': 20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3) '@babel/core': 7.28.3 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-split-export-declaration': 7.24.7 '@inquirer/confirm': 5.1.14(@types/node@24.10.1) - '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0)) + '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0)) beasties: 0.3.5 - browserslist: 4.26.3 + browserslist: 4.28.0 esbuild: 0.25.9 https-proxy-agent: 7.0.6 istanbul-lib-instrument: 6.0.3 @@ -7687,19 +7414,19 @@ snapshots: parse5-html-rewriting-stream: 8.0.0 picomatch: 4.0.3 piscina: 5.1.3 - rolldown: 1.0.0-beta.38 + rollup: 4.52.3 sass: 1.90.0 semver: 7.7.2 source-map-support: 0.5.21 tinyglobby: 0.2.14 tslib: 2.8.1 typescript: 5.8.3 - vite: 7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0) + vite: 7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0) watchpack: 2.4.4 optionalDependencies: - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/localize': 20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2) - '@angular/platform-browser': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/localize': 20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12) + '@angular/platform-browser': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) less: 4.3.0 lmdb: 3.4.2 postcss: 8.5.3 @@ -7716,23 +7443,23 @@ snapshots: - tsx - yaml - '@angular/cdk@20.2.6(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)': + '@angular/cdk@20.2.13(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)': dependencies: - '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) parse5: 8.0.0 rxjs: 7.8.2 tslib: 2.8.1 - '@angular/cli@20.3.3(@types/node@24.10.1)(chokidar@4.0.3)': + '@angular/cli@20.3.10(@types/node@24.10.1)(chokidar@4.0.3)': dependencies: - '@angular-devkit/architect': 0.2003.3(chokidar@4.0.3) - '@angular-devkit/core': 20.3.3(chokidar@4.0.3) - '@angular-devkit/schematics': 20.3.3(chokidar@4.0.3) + '@angular-devkit/architect': 0.2003.10(chokidar@4.0.3) + '@angular-devkit/core': 20.3.10(chokidar@4.0.3) + '@angular-devkit/schematics': 20.3.10(chokidar@4.0.3) '@inquirer/prompts': 7.8.2(@types/node@24.10.1) '@listr2/prompt-adapter-inquirer': 3.0.1(@inquirer/prompts@7.8.2(@types/node@24.10.1))(@types/node@24.10.1)(listr2@9.0.1) '@modelcontextprotocol/sdk': 1.17.3 - '@schematics/angular': 20.3.3(chokidar@4.0.3) + '@schematics/angular': 20.3.10(chokidar@4.0.3) '@yarnpkg/lockfile': 1.1.0 algoliasearch: 5.35.0 ini: 5.0.0 @@ -7749,21 +7476,21 @@ snapshots: - chokidar - supports-color - '@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)': + '@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)': dependencies: - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) rxjs: 7.8.2 tslib: 2.8.1 - '@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3)': + '@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3)': dependencies: - '@angular/compiler': 20.3.2 + '@angular/compiler': 20.3.12 '@babel/core': 7.28.3 '@jridgewell/sourcemap-codec': 1.5.5 chokidar: 4.0.3 convert-source-map: 1.9.0 reflect-metadata: 0.2.2 - semver: 7.7.2 + semver: 7.7.3 tslib: 2.8.1 yargs: 18.0.0 optionalDependencies: @@ -7771,30 +7498,30 @@ snapshots: transitivePeerDependencies: - supports-color - '@angular/compiler@20.3.2': + '@angular/compiler@20.3.12': dependencies: tslib: 2.8.1 - '@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)': + '@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)': dependencies: rxjs: 7.8.2 tslib: 2.8.1 optionalDependencies: - '@angular/compiler': 20.3.2 + '@angular/compiler': 20.3.12 zone.js: 0.15.1 - '@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)': + '@angular/forms@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)': dependencies: - '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/platform-browser': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/platform-browser': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) rxjs: 7.8.2 tslib: 2.8.1 - '@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2)': + '@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)': dependencies: - '@angular/compiler': 20.3.2 - '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) + '@angular/compiler': 20.3.12 + '@angular/compiler-cli': 20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3) '@babel/core': 7.28.3 '@types/babel__core': 7.20.5 tinyglobby: 0.2.15 @@ -7802,25 +7529,25 @@ snapshots: transitivePeerDependencies: - supports-color - '@angular/platform-browser-dynamic@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))': + '@angular/platform-browser-dynamic@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))': dependencies: - '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) - '@angular/compiler': 20.3.2 - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/platform-browser': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/compiler': 20.3.12 + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/platform-browser': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) tslib: 2.8.1 - '@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))': + '@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))': dependencies: - '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) tslib: 2.8.1 - '@angular/router@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)': + '@angular/router@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)': dependencies: - '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/platform-browser': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/platform-browser': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) rxjs: 7.8.2 tslib: 2.8.1 @@ -7834,13 +7561,13 @@ snapshots: '@babel/code-frame@7.27.1': dependencies: - '@babel/helper-validator-identifier': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 js-tokens: 4.0.0 picocolors: 1.1.1 '@babel/compat-data@7.27.7': {} - '@babel/compat-data@7.28.4': {} + '@babel/compat-data@7.28.5': {} '@babel/core@7.27.1': dependencies: @@ -7850,10 +7577,10 @@ snapshots: '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-module-transforms': 7.28.3(@babel/core@7.27.1) '@babel/helpers': 7.28.4 - '@babel/parser': 7.28.4 + '@babel/parser': 7.28.5 '@babel/template': 7.27.2 - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 convert-source-map: 2.0.0 debug: 4.4.3 gensync: 1.0.0-beta.2 @@ -7866,14 +7593,14 @@ snapshots: dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.27.1 - '@babel/generator': 7.28.3 + '@babel/generator': 7.28.5 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3) '@babel/helpers': 7.28.4 - '@babel/parser': 7.28.4 + '@babel/parser': 7.28.5 '@babel/template': 7.27.2 - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 convert-source-map: 2.0.0 debug: 4.4.3 gensync: 1.0.0-beta.2 @@ -7882,17 +7609,17 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/core@7.28.4': + '@babel/core@7.28.5': dependencies: '@babel/code-frame': 7.27.1 - '@babel/generator': 7.28.3 + '@babel/generator': 7.28.5 '@babel/helper-compilation-targets': 7.27.2 - '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5) '@babel/helpers': 7.28.4 - '@babel/parser': 7.28.4 + '@babel/parser': 7.28.5 '@babel/template': 7.27.2 - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 '@jridgewell/remapping': 2.3.5 convert-source-map: 2.0.0 debug: 4.4.3 @@ -7904,31 +7631,31 @@ snapshots: '@babel/generator@7.27.1': dependencies: - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 - '@babel/generator@7.28.3': + '@babel/generator@7.28.5': dependencies: - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 '@babel/helper-annotate-as-pure@7.27.1': dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 '@babel/helper-annotate-as-pure@7.27.3': dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 '@babel/helper-compilation-targets@7.27.2': dependencies: - '@babel/compat-data': 7.28.4 + '@babel/compat-data': 7.28.5 '@babel/helper-validator-option': 7.27.1 browserslist: 4.28.0 lru-cache: 5.1.1 @@ -7942,7 +7669,7 @@ snapshots: '@babel/helper-optimise-call-expression': 7.27.1 '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.1) '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -7961,7 +7688,7 @@ snapshots: '@babel/helper-plugin-utils': 7.27.1 debug: 4.4.3 lodash.debounce: 4.0.8 - resolve: 1.22.10 + resolve: 1.22.11 transitivePeerDependencies: - supports-color @@ -7969,15 +7696,15 @@ snapshots: '@babel/helper-member-expression-to-functions@7.27.1': dependencies: - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color '@babel/helper-module-imports@7.27.1': dependencies: - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color @@ -7985,8 +7712,8 @@ snapshots: dependencies: '@babel/core': 7.27.1 '@babel/helper-module-imports': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -7994,23 +7721,23 @@ snapshots: dependencies: '@babel/core': 7.28.3 '@babel/helper-module-imports': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)': + '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-module-imports': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color '@babel/helper-optimise-call-expression@7.27.1': dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 '@babel/helper-plugin-utils@7.27.1': {} @@ -8019,7 +7746,7 @@ snapshots: '@babel/core': 7.27.1 '@babel/helper-annotate-as-pure': 7.27.1 '@babel/helper-wrap-function': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -8028,49 +7755,49 @@ snapshots: '@babel/core': 7.27.1 '@babel/helper-member-expression-to-functions': 7.27.1 '@babel/helper-optimise-call-expression': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color '@babel/helper-skip-transparent-expression-wrappers@7.27.1': dependencies: - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color '@babel/helper-split-export-declaration@7.24.7': dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 '@babel/helper-string-parser@7.27.1': {} - '@babel/helper-validator-identifier@7.27.1': {} + '@babel/helper-validator-identifier@7.28.5': {} '@babel/helper-validator-option@7.27.1': {} '@babel/helper-wrap-function@7.27.1': dependencies: '@babel/template': 7.27.2 - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color '@babel/helpers@7.28.4': dependencies: '@babel/template': 7.27.2 - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 - '@babel/parser@7.28.4': + '@babel/parser@7.28.5': dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.27.1)': dependencies: '@babel/core': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -8097,7 +7824,7 @@ snapshots: dependencies: '@babel/core': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -8105,24 +7832,24 @@ snapshots: dependencies: '@babel/core': 7.27.1 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.4)': + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.4)': + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.4)': + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.4)': + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.27.1)': @@ -8135,69 +7862,69 @@ snapshots: '@babel/core': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.4)': + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.4)': + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.4)': + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.4)': + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.4)': + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.4)': + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.4)': + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.4)': + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.4)': + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.4)': + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.4)': + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.4)': + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.4)': + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.5)': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.27.1)': @@ -8216,7 +7943,7 @@ snapshots: '@babel/core': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.1) - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -8262,7 +7989,7 @@ snapshots: '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.1) - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -8277,7 +8004,7 @@ snapshots: dependencies: '@babel/core': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -8326,7 +8053,7 @@ snapshots: '@babel/core': 7.27.1 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -8371,8 +8098,8 @@ snapshots: '@babel/core': 7.27.1 '@babel/helper-module-transforms': 7.28.3(@babel/core@7.27.1) '@babel/helper-plugin-utils': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 - '@babel/traverse': 7.28.4 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -8412,7 +8139,7 @@ snapshots: '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-transform-destructuring': 7.27.7(@babel/core@7.27.1) '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.27.1) - '@babel/traverse': 7.28.4 + '@babel/traverse': 7.28.5 transitivePeerDependencies: - supports-color @@ -8622,7 +8349,7 @@ snapshots: dependencies: '@babel/core': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 esutils: 2.0.3 '@babel/runtime@7.27.1': {} @@ -8630,25 +8357,25 @@ snapshots: '@babel/template@7.27.2': dependencies: '@babel/code-frame': 7.27.1 - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 - '@babel/traverse@7.28.4': + '@babel/traverse@7.28.5': dependencies: '@babel/code-frame': 7.27.1 - '@babel/generator': 7.28.3 + '@babel/generator': 7.28.5 '@babel/helper-globals': 7.28.0 - '@babel/parser': 7.28.4 + '@babel/parser': 7.28.5 '@babel/template': 7.27.2 - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 debug: 4.4.3 transitivePeerDependencies: - supports-color - '@babel/types@7.28.4': + '@babel/types@7.28.5': dependencies: '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 '@bcoe/v8-coverage@0.2.3': {} @@ -8657,7 +8384,7 @@ snapshots: '@actions/core': 1.11.1 '@actions/github': 6.0.1 chalk: 4.1.2 - semver: 7.7.2 + semver: 7.7.3 unplugin: 1.16.1 zod: 3.25.76 @@ -8711,9 +8438,6 @@ snapshots: tslib: 2.8.1 optional: true - '@esbuild/aix-ppc64@0.25.10': - optional: true - '@esbuild/aix-ppc64@0.25.5': optional: true @@ -8723,9 +8447,6 @@ snapshots: '@esbuild/aix-ppc64@0.27.0': optional: true - '@esbuild/android-arm64@0.25.10': - optional: true - '@esbuild/android-arm64@0.25.5': optional: true @@ -8735,9 +8456,6 @@ snapshots: '@esbuild/android-arm64@0.27.0': optional: true - '@esbuild/android-arm@0.25.10': - optional: true - '@esbuild/android-arm@0.25.5': optional: true @@ -8747,9 +8465,6 @@ snapshots: '@esbuild/android-arm@0.27.0': optional: true - '@esbuild/android-x64@0.25.10': - optional: true - '@esbuild/android-x64@0.25.5': optional: true @@ -8759,9 +8474,6 @@ snapshots: '@esbuild/android-x64@0.27.0': optional: true - '@esbuild/darwin-arm64@0.25.10': - optional: true - '@esbuild/darwin-arm64@0.25.5': optional: true @@ -8771,9 +8483,6 @@ snapshots: '@esbuild/darwin-arm64@0.27.0': optional: true - '@esbuild/darwin-x64@0.25.10': - optional: true - '@esbuild/darwin-x64@0.25.5': optional: true @@ -8783,9 +8492,6 @@ snapshots: '@esbuild/darwin-x64@0.27.0': optional: true - '@esbuild/freebsd-arm64@0.25.10': - optional: true - '@esbuild/freebsd-arm64@0.25.5': optional: true @@ -8795,9 +8501,6 @@ snapshots: '@esbuild/freebsd-arm64@0.27.0': optional: true - '@esbuild/freebsd-x64@0.25.10': - optional: true - '@esbuild/freebsd-x64@0.25.5': optional: true @@ -8807,9 +8510,6 @@ snapshots: '@esbuild/freebsd-x64@0.27.0': optional: true - '@esbuild/linux-arm64@0.25.10': - optional: true - '@esbuild/linux-arm64@0.25.5': optional: true @@ -8819,9 +8519,6 @@ snapshots: '@esbuild/linux-arm64@0.27.0': optional: true - '@esbuild/linux-arm@0.25.10': - optional: true - '@esbuild/linux-arm@0.25.5': optional: true @@ -8831,9 +8528,6 @@ snapshots: '@esbuild/linux-arm@0.27.0': optional: true - '@esbuild/linux-ia32@0.25.10': - optional: true - '@esbuild/linux-ia32@0.25.5': optional: true @@ -8843,9 +8537,6 @@ snapshots: '@esbuild/linux-ia32@0.27.0': optional: true - '@esbuild/linux-loong64@0.25.10': - optional: true - '@esbuild/linux-loong64@0.25.5': optional: true @@ -8855,9 +8546,6 @@ snapshots: '@esbuild/linux-loong64@0.27.0': optional: true - '@esbuild/linux-mips64el@0.25.10': - optional: true - '@esbuild/linux-mips64el@0.25.5': optional: true @@ -8867,9 +8555,6 @@ snapshots: '@esbuild/linux-mips64el@0.27.0': optional: true - '@esbuild/linux-ppc64@0.25.10': - optional: true - '@esbuild/linux-ppc64@0.25.5': optional: true @@ -8879,9 +8564,6 @@ snapshots: '@esbuild/linux-ppc64@0.27.0': optional: true - '@esbuild/linux-riscv64@0.25.10': - optional: true - '@esbuild/linux-riscv64@0.25.5': optional: true @@ -8891,9 +8573,6 @@ snapshots: '@esbuild/linux-riscv64@0.27.0': optional: true - '@esbuild/linux-s390x@0.25.10': - optional: true - '@esbuild/linux-s390x@0.25.5': optional: true @@ -8903,9 +8582,6 @@ snapshots: '@esbuild/linux-s390x@0.27.0': optional: true - '@esbuild/linux-x64@0.25.10': - optional: true - '@esbuild/linux-x64@0.25.5': optional: true @@ -8915,9 +8591,6 @@ snapshots: '@esbuild/linux-x64@0.27.0': optional: true - '@esbuild/netbsd-arm64@0.25.10': - optional: true - '@esbuild/netbsd-arm64@0.25.5': optional: true @@ -8927,9 +8600,6 @@ snapshots: '@esbuild/netbsd-arm64@0.27.0': optional: true - '@esbuild/netbsd-x64@0.25.10': - optional: true - '@esbuild/netbsd-x64@0.25.5': optional: true @@ -8939,9 +8609,6 @@ snapshots: '@esbuild/netbsd-x64@0.27.0': optional: true - '@esbuild/openbsd-arm64@0.25.10': - optional: true - '@esbuild/openbsd-arm64@0.25.5': optional: true @@ -8951,9 +8618,6 @@ snapshots: '@esbuild/openbsd-arm64@0.27.0': optional: true - '@esbuild/openbsd-x64@0.25.10': - optional: true - '@esbuild/openbsd-x64@0.25.5': optional: true @@ -8963,18 +8627,12 @@ snapshots: '@esbuild/openbsd-x64@0.27.0': optional: true - '@esbuild/openharmony-arm64@0.25.10': - optional: true - '@esbuild/openharmony-arm64@0.25.9': optional: true '@esbuild/openharmony-arm64@0.27.0': optional: true - '@esbuild/sunos-x64@0.25.10': - optional: true - '@esbuild/sunos-x64@0.25.5': optional: true @@ -8984,9 +8642,6 @@ snapshots: '@esbuild/sunos-x64@0.27.0': optional: true - '@esbuild/win32-arm64@0.25.10': - optional: true - '@esbuild/win32-arm64@0.25.5': optional: true @@ -8996,9 +8651,6 @@ snapshots: '@esbuild/win32-arm64@0.27.0': optional: true - '@esbuild/win32-ia32@0.25.10': - optional: true - '@esbuild/win32-ia32@0.25.5': optional: true @@ -9008,9 +8660,6 @@ snapshots: '@esbuild/win32-ia32@0.27.0': optional: true - '@esbuild/win32-x64@0.25.10': - optional: true - '@esbuild/win32-x64@0.25.5': optional: true @@ -9079,44 +8728,44 @@ snapshots: '@humanwhocodes/retry@0.4.3': {} - '@inquirer/ansi@1.0.0': {} + '@inquirer/ansi@1.0.2': {} - '@inquirer/checkbox@4.2.4(@types/node@24.10.1)': + '@inquirer/checkbox@4.3.2(@types/node@24.10.1)': dependencies: - '@inquirer/ansi': 1.0.0 - '@inquirer/core': 10.2.2(@types/node@24.10.1) - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/ansi': 1.0.2 + '@inquirer/core': 10.3.2(@types/node@24.10.1) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@24.10.1) yoctocolors-cjs: 2.1.3 optionalDependencies: '@types/node': 24.10.1 '@inquirer/confirm@5.1.10(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.3.2(@types/node@24.10.1) + '@inquirer/type': 3.0.10(@types/node@24.10.1) optionalDependencies: '@types/node': 24.10.1 '@inquirer/confirm@5.1.14(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.3.2(@types/node@24.10.1) + '@inquirer/type': 3.0.10(@types/node@24.10.1) optionalDependencies: '@types/node': 24.10.1 - '@inquirer/confirm@5.1.18(@types/node@24.10.1)': + '@inquirer/confirm@5.1.21(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.3.2(@types/node@24.10.1) + '@inquirer/type': 3.0.10(@types/node@24.10.1) optionalDependencies: '@types/node': 24.10.1 - '@inquirer/core@10.2.2(@types/node@24.10.1)': + '@inquirer/core@10.3.2(@types/node@24.10.1)': dependencies: - '@inquirer/ansi': 1.0.0 - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/ansi': 1.0.2 + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@24.10.1) cli-width: 4.1.0 mute-stream: 2.0.0 signal-exit: 4.1.0 @@ -9125,96 +8774,96 @@ snapshots: optionalDependencies: '@types/node': 24.10.1 - '@inquirer/editor@4.2.20(@types/node@24.10.1)': + '@inquirer/editor@4.2.23(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.10.1) - '@inquirer/external-editor': 1.0.2(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.3.2(@types/node@24.10.1) + '@inquirer/external-editor': 1.0.3(@types/node@24.10.1) + '@inquirer/type': 3.0.10(@types/node@24.10.1) optionalDependencies: '@types/node': 24.10.1 - '@inquirer/expand@4.0.20(@types/node@24.10.1)': + '@inquirer/expand@4.0.23(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.3.2(@types/node@24.10.1) + '@inquirer/type': 3.0.10(@types/node@24.10.1) yoctocolors-cjs: 2.1.3 optionalDependencies: '@types/node': 24.10.1 - '@inquirer/external-editor@1.0.2(@types/node@24.10.1)': + '@inquirer/external-editor@1.0.3(@types/node@24.10.1)': dependencies: - chardet: 2.1.0 + chardet: 2.1.1 iconv-lite: 0.7.0 optionalDependencies: '@types/node': 24.10.1 - '@inquirer/figures@1.0.13': {} + '@inquirer/figures@1.0.15': {} - '@inquirer/input@4.2.4(@types/node@24.10.1)': + '@inquirer/input@4.3.1(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.3.2(@types/node@24.10.1) + '@inquirer/type': 3.0.10(@types/node@24.10.1) optionalDependencies: '@types/node': 24.10.1 - '@inquirer/number@3.0.20(@types/node@24.10.1)': + '@inquirer/number@3.0.23(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.3.2(@types/node@24.10.1) + '@inquirer/type': 3.0.10(@types/node@24.10.1) optionalDependencies: '@types/node': 24.10.1 - '@inquirer/password@4.0.20(@types/node@24.10.1)': + '@inquirer/password@4.0.23(@types/node@24.10.1)': dependencies: - '@inquirer/ansi': 1.0.0 - '@inquirer/core': 10.2.2(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/ansi': 1.0.2 + '@inquirer/core': 10.3.2(@types/node@24.10.1) + '@inquirer/type': 3.0.10(@types/node@24.10.1) optionalDependencies: '@types/node': 24.10.1 '@inquirer/prompts@7.8.2(@types/node@24.10.1)': dependencies: - '@inquirer/checkbox': 4.2.4(@types/node@24.10.1) - '@inquirer/confirm': 5.1.18(@types/node@24.10.1) - '@inquirer/editor': 4.2.20(@types/node@24.10.1) - '@inquirer/expand': 4.0.20(@types/node@24.10.1) - '@inquirer/input': 4.2.4(@types/node@24.10.1) - '@inquirer/number': 3.0.20(@types/node@24.10.1) - '@inquirer/password': 4.0.20(@types/node@24.10.1) - '@inquirer/rawlist': 4.1.8(@types/node@24.10.1) - '@inquirer/search': 3.1.3(@types/node@24.10.1) - '@inquirer/select': 4.3.4(@types/node@24.10.1) + '@inquirer/checkbox': 4.3.2(@types/node@24.10.1) + '@inquirer/confirm': 5.1.21(@types/node@24.10.1) + '@inquirer/editor': 4.2.23(@types/node@24.10.1) + '@inquirer/expand': 4.0.23(@types/node@24.10.1) + '@inquirer/input': 4.3.1(@types/node@24.10.1) + '@inquirer/number': 3.0.23(@types/node@24.10.1) + '@inquirer/password': 4.0.23(@types/node@24.10.1) + '@inquirer/rawlist': 4.1.11(@types/node@24.10.1) + '@inquirer/search': 3.2.2(@types/node@24.10.1) + '@inquirer/select': 4.4.2(@types/node@24.10.1) optionalDependencies: '@types/node': 24.10.1 - '@inquirer/rawlist@4.1.8(@types/node@24.10.1)': + '@inquirer/rawlist@4.1.11(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.3.2(@types/node@24.10.1) + '@inquirer/type': 3.0.10(@types/node@24.10.1) yoctocolors-cjs: 2.1.3 optionalDependencies: '@types/node': 24.10.1 - '@inquirer/search@3.1.3(@types/node@24.10.1)': + '@inquirer/search@3.2.2(@types/node@24.10.1)': dependencies: - '@inquirer/core': 10.2.2(@types/node@24.10.1) - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/core': 10.3.2(@types/node@24.10.1) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@24.10.1) yoctocolors-cjs: 2.1.3 optionalDependencies: '@types/node': 24.10.1 - '@inquirer/select@4.3.4(@types/node@24.10.1)': + '@inquirer/select@4.4.2(@types/node@24.10.1)': dependencies: - '@inquirer/ansi': 1.0.0 - '@inquirer/core': 10.2.2(@types/node@24.10.1) - '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/ansi': 1.0.2 + '@inquirer/core': 10.3.2(@types/node@24.10.1) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@24.10.1) yoctocolors-cjs: 2.1.3 optionalDependencies: '@types/node': 24.10.1 - '@inquirer/type@3.0.8(@types/node@24.10.1)': + '@inquirer/type@3.0.10(@types/node@24.10.1)': optionalDependencies: '@types/node': 24.10.1 @@ -9437,7 +9086,7 @@ snapshots: '@jest/transform@30.2.0': dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@jest/types': 30.2.0 '@jridgewell/trace-mapping': 0.3.31 babel-plugin-istanbul: 7.0.1 @@ -9541,7 +9190,7 @@ snapshots: '@listr2/prompt-adapter-inquirer@3.0.1(@inquirer/prompts@7.8.2(@types/node@24.10.1))(@types/node@24.10.1)(listr2@9.0.1)': dependencies: '@inquirer/prompts': 7.8.2(@types/node@24.10.1) - '@inquirer/type': 3.0.8(@types/node@24.10.1) + '@inquirer/type': 3.0.10(@types/node@24.10.1) listr2: 9.0.1 transitivePeerDependencies: - '@types/node' @@ -9702,42 +9351,35 @@ snapshots: '@tybys/wasm-util': 0.10.1 optional: true - '@napi-rs/wasm-runtime@1.0.5': + '@ng-bootstrap/ng-bootstrap@19.0.1(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@popperjs/core@2.11.8)(rxjs@7.8.2)': dependencies: - '@emnapi/core': 1.5.0 - '@emnapi/runtime': 1.5.0 - '@tybys/wasm-util': 0.10.1 - optional: true - - '@ng-bootstrap/ng-bootstrap@19.0.1(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@popperjs/core@2.11.8)(rxjs@7.8.2)': - dependencies: - '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/forms': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) - '@angular/localize': 20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2) + '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/forms': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + '@angular/localize': 20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12) '@popperjs/core': 2.11.8 rxjs: 7.8.2 tslib: 2.8.1 - '@ng-select/ng-select@20.6.3(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))': + '@ng-select/ng-select@20.7.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))': dependencies: - '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/forms': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/forms': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) tslib: 2.8.1 - ? '@ngneat/dirty-check-forms@3.0.3(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/router@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(lodash-es@4.17.21)(rxjs@7.8.2)' - : dependencies: - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/forms': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) - '@angular/router': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + '@ngneat/dirty-check-forms@3.0.3(30ab5a8fe47ec28a91fa5d2ee68e6d33)': + dependencies: + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/forms': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + '@angular/router': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) lodash-es: 4.17.21 rxjs: 7.8.2 tslib: 2.8.1 - '@ngtools/webpack@20.0.4(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(typescript@5.8.3)(webpack@5.99.8(esbuild@0.25.5))': + '@ngtools/webpack@20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(typescript@5.8.3)(webpack@5.99.8(esbuild@0.25.5))': dependencies: - '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) + '@angular/compiler-cli': 20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3) typescript: 5.8.3 webpack: 5.99.8(esbuild@0.25.5) @@ -9788,7 +9430,7 @@ snapshots: '@npmcli/package-json@6.2.0': dependencies: '@npmcli/git': 6.0.3 - glob: 10.4.5 + glob: 10.5.0 hosted-git-info: 8.1.0 json-parse-even-better-errors: 4.0.0 proc-log: 5.0.0 @@ -9806,7 +9448,7 @@ snapshots: '@npmcli/node-gyp': 4.0.0 '@npmcli/package-json': 6.2.0 '@npmcli/promise-spawn': 8.0.3 - node-gyp: 11.4.2 + node-gyp: 11.5.0 proc-log: 5.0.0 which: 5.0.0 transitivePeerDependencies: @@ -9870,8 +9512,6 @@ snapshots: dependencies: '@octokit/openapi-types': 24.2.0 - '@oxc-project/types@0.89.0': {} - '@parcel/watcher-android-arm64@2.5.1': optional: true @@ -9944,52 +9584,6 @@ snapshots: '@popperjs/core@2.11.8': {} - '@rolldown/binding-android-arm64@1.0.0-beta.38': - optional: true - - '@rolldown/binding-darwin-arm64@1.0.0-beta.38': - optional: true - - '@rolldown/binding-darwin-x64@1.0.0-beta.38': - optional: true - - '@rolldown/binding-freebsd-x64@1.0.0-beta.38': - optional: true - - '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.38': - optional: true - - '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.38': - optional: true - - '@rolldown/binding-linux-arm64-musl@1.0.0-beta.38': - optional: true - - '@rolldown/binding-linux-x64-gnu@1.0.0-beta.38': - optional: true - - '@rolldown/binding-linux-x64-musl@1.0.0-beta.38': - optional: true - - '@rolldown/binding-openharmony-arm64@1.0.0-beta.38': - optional: true - - '@rolldown/binding-wasm32-wasi@1.0.0-beta.38': - dependencies: - '@napi-rs/wasm-runtime': 1.0.5 - optional: true - - '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.38': - optional: true - - '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.38': - optional: true - - '@rolldown/binding-win32-x64-msvc@1.0.0-beta.38': - optional: true - - '@rolldown/pluginutils@1.0.0-beta.38': {} - '@rollup/rollup-android-arm-eabi@4.40.2': optional: true @@ -10116,10 +9710,10 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.52.3': optional: true - '@schematics/angular@20.3.3(chokidar@4.0.3)': + '@schematics/angular@20.3.10(chokidar@4.0.3)': dependencies: - '@angular-devkit/core': 20.3.3(chokidar@4.0.3) - '@angular-devkit/schematics': 20.3.3(chokidar@4.0.3) + '@angular-devkit/core': 20.3.10(chokidar@4.0.3) + '@angular-devkit/schematics': 20.3.10(chokidar@4.0.3) jsonc-parser: 3.3.1 transitivePeerDependencies: - chokidar @@ -10196,24 +9790,24 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 '@types/babel__generator': 7.27.0 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.28.0 '@types/babel__generator@7.27.0': dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 '@types/babel__traverse@7.28.0': dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.28.5 '@types/body-parser@1.19.6': dependencies: @@ -10510,13 +10104,13 @@ snapshots: dependencies: vite: 6.3.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.88.0)(terser@5.39.1)(yaml@2.7.0) - '@vitejs/plugin-basic-ssl@2.0.0(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))': + '@vitejs/plugin-basic-ssl@2.0.0(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))': dependencies: - vite: 7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0) + vite: 7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0) - '@vitejs/plugin-basic-ssl@2.1.0(vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))': + '@vitejs/plugin-basic-ssl@2.1.0(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))': dependencies: - vite: 7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0) + vite: 7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0) '@webassemblyjs/ast@1.14.1': dependencies: @@ -10696,7 +10290,7 @@ snapshots: dependencies: type-fest: 0.21.3 - ansi-escapes@7.1.1: + ansi-escapes@7.2.0: dependencies: environment: 1.1.0 @@ -10714,8 +10308,6 @@ snapshots: ansi-styles@6.2.3: {} - ansis@4.2.0: {} - anymatch@3.1.3: dependencies: normalize-path: 3.0.0 @@ -10747,13 +10339,13 @@ snapshots: axobject-query@4.1.0: {} - babel-jest@30.2.0(@babel/core@7.28.4): + babel-jest@30.2.0(@babel/core@7.28.5): dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@jest/transform': 30.2.0 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 7.0.1 - babel-preset-jest: 30.2.0(@babel/core@7.28.4) + babel-preset-jest: 30.2.0(@babel/core@7.28.5) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -10804,38 +10396,36 @@ snapshots: transitivePeerDependencies: - supports-color - babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.4): + babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.5): dependencies: - '@babel/core': 7.28.4 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.4) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.4) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.4) - '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.4) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.4) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.4) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.4) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.4) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.4) + '@babel/core': 7.28.5 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.5) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.5) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.5) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.5) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.5) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.5) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.5) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.5) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.5) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.5) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.5) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.5) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.5) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.5) - babel-preset-jest@30.2.0(@babel/core@7.28.4): + babel-preset-jest@30.2.0(@babel/core@7.28.5): dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 babel-plugin-jest-hoist: 30.2.0 - babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.4) + babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.5) balanced-match@1.0.2: {} base64-js@1.5.1: optional: true - baseline-browser-mapping@2.8.10: {} - baseline-browser-mapping@2.8.29: {} batch@0.6.1: {} @@ -10930,14 +10520,6 @@ snapshots: dependencies: fill-range: 7.1.1 - browserslist@4.26.3: - dependencies: - baseline-browser-mapping: 2.8.10 - caniuse-lite: 1.0.30001746 - electron-to-chromium: 1.5.228 - node-releases: 2.0.21 - update-browserslist-db: 1.1.3(browserslist@4.26.3) - browserslist@4.28.0: dependencies: baseline-browser-mapping: 2.8.29 @@ -10972,15 +10554,15 @@ snapshots: dependencies: '@npmcli/fs': 4.0.0 fs-minipass: 3.0.3 - glob: 10.4.5 + glob: 10.5.0 lru-cache: 10.4.3 minipass: 7.1.2 minipass-collect: 2.0.1 minipass-flush: 1.0.5 minipass-pipeline: 1.2.4 - p-map: 7.0.3 + p-map: 7.0.4 ssri: 12.0.0 - tar: 7.5.1 + tar: 7.5.2 unique-filename: 4.0.0 call-bind-apply-helpers@1.0.2: @@ -10999,8 +10581,6 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001746: {} - caniuse-lite@1.0.30001755: {} canvas@3.0.0: @@ -11019,7 +10599,7 @@ snapshots: char-regex@1.0.2: {} - chardet@2.1.0: {} + chardet@2.1.1: {} chokidar@3.6.0: dependencies: @@ -11296,7 +10876,7 @@ snapshots: detect-libc@1.0.3: optional: true - detect-libc@2.1.1: + detect-libc@2.1.2: optional: true detect-newline@3.1.0: {} @@ -11343,13 +10923,11 @@ snapshots: ee-first@1.1.1: {} - electron-to-chromium@1.5.228: {} - electron-to-chromium@1.5.255: {} emittery@0.13.1: {} - emoji-regex@10.5.0: {} + emoji-regex@10.6.0: {} emoji-regex@8.0.0: {} @@ -11411,36 +10989,6 @@ snapshots: esbuild-wasm@0.27.0: {} - esbuild@0.25.10: - optionalDependencies: - '@esbuild/aix-ppc64': 0.25.10 - '@esbuild/android-arm': 0.25.10 - '@esbuild/android-arm64': 0.25.10 - '@esbuild/android-x64': 0.25.10 - '@esbuild/darwin-arm64': 0.25.10 - '@esbuild/darwin-x64': 0.25.10 - '@esbuild/freebsd-arm64': 0.25.10 - '@esbuild/freebsd-x64': 0.25.10 - '@esbuild/linux-arm': 0.25.10 - '@esbuild/linux-arm64': 0.25.10 - '@esbuild/linux-ia32': 0.25.10 - '@esbuild/linux-loong64': 0.25.10 - '@esbuild/linux-mips64el': 0.25.10 - '@esbuild/linux-ppc64': 0.25.10 - '@esbuild/linux-riscv64': 0.25.10 - '@esbuild/linux-s390x': 0.25.10 - '@esbuild/linux-x64': 0.25.10 - '@esbuild/netbsd-arm64': 0.25.10 - '@esbuild/netbsd-x64': 0.25.10 - '@esbuild/openbsd-arm64': 0.25.10 - '@esbuild/openbsd-x64': 0.25.10 - '@esbuild/openharmony-arm64': 0.25.10 - '@esbuild/sunos-x64': 0.25.10 - '@esbuild/win32-arm64': 0.25.10 - '@esbuild/win32-ia32': 0.25.10 - '@esbuild/win32-x64': 0.25.10 - optional: true - esbuild@0.25.5: optionalDependencies: '@esbuild/aix-ppc64': 0.25.5 @@ -11670,7 +11218,7 @@ snapshots: jest-mock: 30.2.0 jest-util: 30.2.0 - exponential-backoff@3.1.2: {} + exponential-backoff@3.1.3: {} express-rate-limit@7.5.1(express@5.1.0): dependencies: @@ -11926,6 +11474,15 @@ snapshots: package-json-from-dist: 1.0.1 path-scurry: 1.11.1 + glob@10.5.0: + dependencies: + foreground-child: 3.3.1 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 + glob@7.2.3: dependencies: fs.realpath: 1.0.0 @@ -11968,7 +11525,7 @@ snapshots: dependencies: lru-cache: 10.4.3 - hosted-git-info@9.0.0: + hosted-git-info@9.0.2: dependencies: lru-cache: 11.2.2 @@ -12111,7 +11668,7 @@ snapshots: image-size@0.5.5: optional: true - immutable@5.1.3: {} + immutable@5.1.4: {} import-fresh@3.3.1: dependencies: @@ -12139,7 +11696,7 @@ snapshots: ini@5.0.0: {} - ip-address@10.0.1: {} + ip-address@10.1.0: {} ipaddr.js@1.9.1: {} @@ -12220,7 +11777,7 @@ snapshots: istanbul-lib-instrument@6.0.3: dependencies: '@babel/core': 7.28.3 - '@babel/parser': 7.28.4 + '@babel/parser': 7.28.5 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.7.2 @@ -12305,12 +11862,12 @@ snapshots: jest-config@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)): dependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@jest/get-type': 30.1.0 '@jest/pattern': 30.0.1 '@jest/test-sequencer': 30.2.0 '@jest/types': 30.2.0 - babel-jest: 30.2.0(@babel/core@7.28.4) + babel-jest: 30.2.0(@babel/core@7.28.5) chalk: 4.1.2 ci-info: 4.3.0 deepmerge: 4.3.1 @@ -12511,21 +12068,21 @@ snapshots: optionalDependencies: jest-resolve: 30.2.0 - jest-preset-angular@14.6.0(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser-dynamic@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))))(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(canvas@3.0.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jsdom@26.1.0(canvas@3.0.0))(typescript@5.8.3): + jest-preset-angular@14.6.0(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser-dynamic@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))))(@babel/core@7.28.5)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.5))(canvas@3.0.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jsdom@26.1.0(canvas@3.0.0))(typescript@5.8.3): dependencies: - '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/platform-browser-dynamic': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))) + '@angular/compiler-cli': 20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/platform-browser-dynamic': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))) bs-logger: 0.2.6 esbuild-wasm: 0.25.10 jest: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) jest-environment-jsdom: 29.7.0(canvas@3.0.0) jest-util: 29.7.0 pretty-format: 29.7.0 - ts-jest: 29.4.4(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.25.10)(jest-util@29.7.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3) + ts-jest: 29.4.4(@babel/core@7.28.5)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.5))(esbuild@0.27.0)(jest-util@29.7.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3) typescript: 5.8.3 optionalDependencies: - esbuild: 0.25.10 + esbuild: 0.27.0 jsdom: 26.1.0(canvas@3.0.0) transitivePeerDependencies: - '@babel/core' @@ -12537,12 +12094,12 @@ snapshots: - supports-color - utf-8-validate - jest-preset-angular@15.0.3(53f1eecb3c13a66432ac1820fed37a4d): + jest-preset-angular@15.0.3(95a8eae46a7b2bcef52e71596dd4f983): dependencies: - '@angular/compiler-cli': 20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3) - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/platform-browser': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)) - '@angular/platform-browser-dynamic': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.2)(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))) + '@angular/compiler-cli': 20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/platform-browser': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/platform-browser-dynamic': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))) '@jest/environment-jsdom-abstract': 30.2.0(canvas@3.0.0)(jsdom@26.1.0(canvas@3.0.0)) bs-logger: 0.2.6 esbuild-wasm: 0.27.0 @@ -12550,7 +12107,7 @@ snapshots: jest-util: 30.2.0 jsdom: 26.1.0(canvas@3.0.0) pretty-format: 30.2.0 - ts-jest: 29.4.5(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.27.0)(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3) + ts-jest: 29.4.5(@babel/core@7.28.5)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.5))(esbuild@0.27.0)(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3) typescript: 5.8.3 optionalDependencies: esbuild: 0.27.0 @@ -12637,17 +12194,17 @@ snapshots: jest-snapshot@30.2.0: dependencies: - '@babel/core': 7.28.4 - '@babel/generator': 7.28.3 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4) - '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4) - '@babel/types': 7.28.4 + '@babel/core': 7.28.5 + '@babel/generator': 7.28.5 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5) + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5) + '@babel/types': 7.28.5 '@jest/expect-utils': 30.2.0 '@jest/get-type': 30.1.0 '@jest/snapshot-utils': 30.2.0 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.4) + babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.5) chalk: 4.1.2 expect: 30.2.0 graceful-fs: 4.2.11 @@ -12976,7 +12533,7 @@ snapshots: log-update@6.1.0: dependencies: - ansi-escapes: 7.1.1 + ansi-escapes: 7.2.0 cli-cursor: 5.0.0 slice-ansi: 7.1.2 strip-ansi: 7.1.2 @@ -13210,46 +12767,46 @@ snapshots: pdfjs-dist: 4.8.69 tslib: 2.8.1 - ngx-bootstrap-icons@1.9.3(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)): + ngx-bootstrap-icons@1.9.3(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)): dependencies: - '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) tslib: 2.8.1 - ngx-color@10.1.0(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)): + ngx-color@10.1.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)): dependencies: - '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) '@ctrl/tinycolor': 4.2.0 material-colors: 1.2.6 tslib: 2.8.1 - ngx-cookie-service@20.1.0(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)): + ngx-cookie-service@20.1.1(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)): dependencies: - '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) tslib: 2.8.1 - ngx-device-detector@10.1.0(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)): + ngx-device-detector@10.1.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)): dependencies: - '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) tslib: 2.8.1 - ngx-ui-tour-core@15.0.0(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/router@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(rxjs@7.8.2): + ngx-ui-tour-core@15.0.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/router@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(rxjs@7.8.2): dependencies: - '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/router': 20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) + '@angular/router': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) rxjs: 7.8.2 tslib: 2.8.1 - ngx-ui-tour-ng-bootstrap@17.0.1(a51ec0d773a3e93ac3d51d20ca771021): + ngx-ui-tour-ng-bootstrap@17.0.1(ea1ef7845320e16ba2fd99b51fa9f5ad): dependencies: - '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) - '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) - '@ng-bootstrap/ng-bootstrap': 19.0.1(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@popperjs/core@2.11.8)(rxjs@7.8.2) - ngx-ui-tour-core: 15.0.0(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/router@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(rxjs@7.8.2) + '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) + '@ng-bootstrap/ng-bootstrap': 19.0.1(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@popperjs/core@2.11.8)(rxjs@7.8.2) + ngx-ui-tour-core: 15.0.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/router@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(rxjs@7.8.2) tslib: 2.8.1 transitivePeerDependencies: - '@angular/router' @@ -13270,19 +12827,19 @@ snapshots: node-gyp-build-optional-packages@5.2.2: dependencies: - detect-libc: 2.1.1 + detect-libc: 2.1.2 optional: true - node-gyp@11.4.2: + node-gyp@11.5.0: dependencies: env-paths: 2.2.1 - exponential-backoff: 3.1.2 + exponential-backoff: 3.1.3 graceful-fs: 4.2.11 make-fetch-happen: 14.0.3 nopt: 8.1.0 proc-log: 5.0.0 semver: 7.7.2 - tar: 7.5.1 + tar: 7.5.2 tinyglobby: 0.2.15 which: 5.0.0 transitivePeerDependencies: @@ -13290,8 +12847,6 @@ snapshots: node-int64@0.4.0: {} - node-releases@2.0.21: {} - node-releases@2.0.27: {} nopt@8.1.0: @@ -13321,15 +12876,15 @@ snapshots: npm-package-arg@13.0.0: dependencies: - hosted-git-info: 9.0.0 + hosted-git-info: 9.0.2 proc-log: 5.0.0 semver: 7.7.2 validate-npm-package-name: 6.0.2 - npm-packlist@10.0.2: + npm-packlist@10.0.3: dependencies: ignore-walk: 8.0.0 - proc-log: 5.0.0 + proc-log: 6.0.0 npm-pick-manifest@10.0.0: dependencies: @@ -13432,7 +12987,7 @@ snapshots: dependencies: p-limit: 3.1.0 - p-map@7.0.3: {} + p-map@7.0.4: {} p-retry@6.2.1: dependencies: @@ -13455,7 +13010,7 @@ snapshots: fs-minipass: 3.0.3 minipass: 7.1.2 npm-package-arg: 12.0.2 - npm-packlist: 10.0.2 + npm-packlist: 10.0.3 npm-pick-manifest: 10.0.0 npm-registry-fetch: 18.0.2 proc-log: 5.0.0 @@ -13626,7 +13181,7 @@ snapshots: prebuild-install@7.1.2: dependencies: - detect-libc: 2.1.1 + detect-libc: 2.1.2 expand-template: 2.0.3 github-from-package: 0.0.0 minimist: 1.2.8 @@ -13669,6 +13224,8 @@ snapshots: proc-log@5.0.0: {} + proc-log@6.0.0: {} + process-nextick-args@2.0.1: {} promise-retry@2.0.1: @@ -13813,6 +13370,12 @@ snapshots: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 + resolve@1.22.11: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + restore-cursor@5.1.0: dependencies: onetime: 7.0.0 @@ -13826,27 +13389,6 @@ snapshots: rfdc@1.4.1: {} - rolldown@1.0.0-beta.38: - dependencies: - '@oxc-project/types': 0.89.0 - '@rolldown/pluginutils': 1.0.0-beta.38 - ansis: 4.2.0 - optionalDependencies: - '@rolldown/binding-android-arm64': 1.0.0-beta.38 - '@rolldown/binding-darwin-arm64': 1.0.0-beta.38 - '@rolldown/binding-darwin-x64': 1.0.0-beta.38 - '@rolldown/binding-freebsd-x64': 1.0.0-beta.38 - '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.38 - '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.38 - '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.38 - '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.38 - '@rolldown/binding-linux-x64-musl': 1.0.0-beta.38 - '@rolldown/binding-openharmony-arm64': 1.0.0-beta.38 - '@rolldown/binding-wasm32-wasi': 1.0.0-beta.38 - '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.38 - '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.38 - '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.38 - rollup@4.40.2: dependencies: '@types/estree': 1.0.7 @@ -13939,7 +13481,7 @@ snapshots: sass@1.88.0: dependencies: chokidar: 4.0.3 - immutable: 5.1.3 + immutable: 5.1.4 source-map-js: 1.2.1 optionalDependencies: '@parcel/watcher': 2.5.1 @@ -13947,7 +13489,7 @@ snapshots: sass@1.90.0: dependencies: chokidar: 4.0.3 - immutable: 5.1.3 + immutable: 5.1.4 source-map-js: 1.2.1 optionalDependencies: '@parcel/watcher': 2.5.1 @@ -14156,7 +13698,7 @@ snapshots: socks@2.8.7: dependencies: - ip-address: 10.0.1 + ip-address: 10.1.0 smart-buffer: 4.2.0 source-map-js@1.2.1: {} @@ -14255,7 +13797,7 @@ snapshots: string-width@7.2.0: dependencies: - emoji-regex: 10.5.0 + emoji-regex: 10.6.0 get-east-asian-width: 1.4.0 strip-ansi: 7.1.2 @@ -14330,7 +13872,7 @@ snapshots: mkdirp: 1.0.4 yallist: 4.0.0 - tar@7.5.1: + tar@7.5.2: dependencies: '@isaacs/fs-minipass': 4.0.1 chownr: 3.0.0 @@ -14442,28 +13984,7 @@ snapshots: dependencies: typescript: 5.8.3 - ts-jest@29.4.4(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.25.10)(jest-util@29.7.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3): - dependencies: - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - handlebars: 4.7.8 - jest: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) - json5: 2.2.3 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.7.2 - type-fest: 4.41.0 - typescript: 5.8.3 - yargs-parser: 21.1.1 - optionalDependencies: - '@babel/core': 7.28.4 - '@jest/transform': 30.2.0 - '@jest/types': 30.2.0 - babel-jest: 30.2.0(@babel/core@7.28.4) - esbuild: 0.25.10 - jest-util: 29.7.0 - - ts-jest@29.4.5(@babel/core@7.28.4)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.4))(esbuild@0.27.0)(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3): + ts-jest@29.4.4(@babel/core@7.28.5)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.5))(esbuild@0.27.0)(jest-util@29.7.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -14477,10 +13998,31 @@ snapshots: typescript: 5.8.3 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.28.4 + '@babel/core': 7.28.5 '@jest/transform': 30.2.0 '@jest/types': 30.2.0 - babel-jest: 30.2.0(@babel/core@7.28.4) + babel-jest: 30.2.0(@babel/core@7.28.5) + esbuild: 0.27.0 + jest-util: 29.7.0 + + ts-jest@29.4.5(@babel/core@7.28.5)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.5))(esbuild@0.27.0)(jest-util@30.2.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(typescript@5.8.3): + dependencies: + bs-logger: 0.2.6 + fast-json-stable-stringify: 2.1.0 + handlebars: 4.7.8 + jest: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) + json5: 2.2.3 + lodash.memoize: 4.1.2 + make-error: 1.3.6 + semver: 7.7.3 + type-fest: 4.41.0 + typescript: 5.8.3 + yargs-parser: 21.1.1 + optionalDependencies: + '@babel/core': 7.28.5 + '@jest/transform': 30.2.0 + '@jest/types': 30.2.0 + babel-jest: 30.2.0(@babel/core@7.28.5) esbuild: 0.27.0 jest-util: 30.2.0 @@ -14613,12 +14155,6 @@ snapshots: '@unrs/resolver-binding-win32-ia32-msvc': 1.11.1 '@unrs/resolver-binding-win32-x64-msvc': 1.11.1 - update-browserslist-db@1.1.3(browserslist@4.26.3): - dependencies: - browserslist: 4.26.3 - escalade: 3.2.0 - picocolors: 1.1.1 - update-browserslist-db@1.1.4(browserslist@4.28.0): dependencies: browserslist: 4.28.0 @@ -14680,7 +14216,7 @@ snapshots: terser: 5.39.1 yaml: 2.7.0 - vite@7.1.5(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0): + vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0): dependencies: esbuild: 0.25.9 fdir: 6.5.0(picomatch@4.0.3) From a93d83119eacbbc369964b6e3f13f8b5f79ab498 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 04:55:39 +0000 Subject: [PATCH 091/133] Auto translate strings --- src-ui/messages.xlf | 70 ++++++++++++++++++++++----------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 13deb8a89..c7c9ea4da 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -5,14 +5,14 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -20,212 +20,212 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -233,7 +233,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 From 7a50157164cf710b57f20e58be5c730f0c52727b Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 18 Nov 2025 07:57:09 -0800 Subject: [PATCH 092/133] Fix: sort editing filterable dropdowns sooner (#11404) --- .../filterable-dropdown.component.spec.ts | 41 +++++++++++++++++++ .../filterable-dropdown.component.ts | 23 ++++++++++- 2 files changed, 62 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts index 5b643dc9f..2ecf95f2b 100644 --- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts +++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts @@ -631,6 +631,47 @@ describe('FilterableDropdownComponent & FilterableDropdownSelectionModel', () => ]) }) + it('resorts items immediately when document count sorting enabled', () => { + const apple: Tag = { id: 55, name: 'Apple' } + const zebra: Tag = { id: 56, name: 'Zebra' } + + selectionModel.documentCountSortingEnabled = true + selectionModel.items = [apple, zebra] + expect(selectionModel.items.map((item) => item?.id ?? null)).toEqual([ + null, + apple.id, + zebra.id, + ]) + + selectionModel.documentCounts = [ + { id: zebra.id, document_count: 5 }, + { id: apple.id, document_count: 0 }, + ] + + expect(selectionModel.items.map((item) => item?.id ?? null)).toEqual([ + null, + zebra.id, + apple.id, + ]) + }) + + it('does not resort items by default when document counts are set', () => { + const first: Tag = { id: 57, name: 'First' } + const second: Tag = { id: 58, name: 'Second' } + + selectionModel.items = [first, second] + selectionModel.documentCounts = [ + { id: second.id, document_count: 10 }, + { id: first.id, document_count: 0 }, + ] + + expect(selectionModel.items.map((item) => item?.id ?? null)).toEqual([ + null, + first.id, + second.id, + ]) + }) + it('uses fallback document counts when selection data is missing', () => { const fallbackRoot: Tag = { id: 50, diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts index 1e15930d1..ec5425630 100644 --- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts +++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts @@ -61,8 +61,13 @@ export class FilterableDropdownSelectionModel { temporaryIntersection: Intersection = this._intersection private _documentCounts: SelectionDataItem[] = [] + public documentCountSortingEnabled = false + public set documentCounts(counts: SelectionDataItem[]) { this._documentCounts = counts + if (this.documentCountSortingEnabled) { + this.sortItems() + } } private _items: MatchingModel[] = [] @@ -651,8 +656,9 @@ export class FilterableDropdownComponent this.selectionModel.changed.complete() model.items = this.selectionModel.items model.manyToOne = this.selectionModel.manyToOne - model.singleSelect = this.editing && !this.selectionModel.manyToOne + model.singleSelect = this._editing && !model.manyToOne } + model.documentCountSortingEnabled = this._editing model.changed.subscribe((updatedModel) => { this.selectionModelChange.next(updatedModel) }) @@ -682,8 +688,21 @@ export class FilterableDropdownComponent @Input() allowSelectNone: boolean = false + private _editing = false + @Input() - editing = false + set editing(value: boolean) { + this._editing = value + if (this.selectionModel) { + this.selectionModel.singleSelect = + this._editing && !this.selectionModel.manyToOne + this.selectionModel.documentCountSortingEnabled = this._editing + } + } + + get editing() { + return this._editing + } @Input() applyOnClose = false From c05d75dab0568cd870561200d7880cef135c6f26 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 15:58:50 +0000 Subject: [PATCH 093/133] Auto translate strings --- src-ui/messages.xlf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index c7c9ea4da..11a735f25 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -5360,7 +5360,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned @@ -5368,7 +5368,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 From 4bf681387a6701d252188f66c70a550109abfe5a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 09:29:39 -0800 Subject: [PATCH 094/133] docker-compose(deps): bump gotenberg/gotenberg in /docker/compose (#11393) Bumps gotenberg/gotenberg from 8.24 to 8.25. --- updated-dependencies: - dependency-name: gotenberg/gotenberg dependency-version: '8.25' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- docker/compose/docker-compose.ci-test.yml | 2 +- docker/compose/docker-compose.mariadb-tika.yml | 2 +- docker/compose/docker-compose.postgres-tika.yml | 2 +- docker/compose/docker-compose.sqlite-tika.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/compose/docker-compose.ci-test.yml b/docker/compose/docker-compose.ci-test.yml index 701d323c7..d277406b8 100644 --- a/docker/compose/docker-compose.ci-test.yml +++ b/docker/compose/docker-compose.ci-test.yml @@ -4,7 +4,7 @@ # correct networking for the tests services: gotenberg: - image: docker.io/gotenberg/gotenberg:8.24 + image: docker.io/gotenberg/gotenberg:8.25 hostname: gotenberg container_name: gotenberg network_mode: host diff --git a/docker/compose/docker-compose.mariadb-tika.yml b/docker/compose/docker-compose.mariadb-tika.yml index c2b625188..03601e63e 100644 --- a/docker/compose/docker-compose.mariadb-tika.yml +++ b/docker/compose/docker-compose.mariadb-tika.yml @@ -72,7 +72,7 @@ services: PAPERLESS_TIKA_GOTENBERG_ENDPOINT: http://gotenberg:3000 PAPERLESS_TIKA_ENDPOINT: http://tika:9998 gotenberg: - image: docker.io/gotenberg/gotenberg:8.24 + image: docker.io/gotenberg/gotenberg:8.25 restart: unless-stopped # The gotenberg chromium route is used to convert .eml files. We do not # want to allow external content like tracking pixels or even javascript. diff --git a/docker/compose/docker-compose.postgres-tika.yml b/docker/compose/docker-compose.postgres-tika.yml index 530212b51..19a164025 100644 --- a/docker/compose/docker-compose.postgres-tika.yml +++ b/docker/compose/docker-compose.postgres-tika.yml @@ -66,7 +66,7 @@ services: PAPERLESS_TIKA_GOTENBERG_ENDPOINT: http://gotenberg:3000 PAPERLESS_TIKA_ENDPOINT: http://tika:9998 gotenberg: - image: docker.io/gotenberg/gotenberg:8.24 + image: docker.io/gotenberg/gotenberg:8.25 restart: unless-stopped # The gotenberg chromium route is used to convert .eml files. We do not # want to allow external content like tracking pixels or even javascript. diff --git a/docker/compose/docker-compose.sqlite-tika.yml b/docker/compose/docker-compose.sqlite-tika.yml index b849a8ed3..598328907 100644 --- a/docker/compose/docker-compose.sqlite-tika.yml +++ b/docker/compose/docker-compose.sqlite-tika.yml @@ -55,7 +55,7 @@ services: PAPERLESS_TIKA_GOTENBERG_ENDPOINT: http://gotenberg:3000 PAPERLESS_TIKA_ENDPOINT: http://tika:9998 gotenberg: - image: docker.io/gotenberg/gotenberg:8.24 + image: docker.io/gotenberg/gotenberg:8.25 restart: unless-stopped # The gotenberg chromium route is used to convert .eml files. We do not # want to allow external content like tracking pixels or even javascript. From 36d45ecf4d68502abd494053ac13ae44226f185a Mon Sep 17 00:00:00 2001 From: Ed Bardsley Date: Tue, 18 Nov 2025 10:28:43 -0800 Subject: [PATCH 095/133] Development: fix unreachable code around assertRaises blocks (#11365) * tests: general cleanup and fixes for runnning under docker This now allows tests to be run under a locally built or production docker image with something like: `docker run --rm -v $PWD:/usr/src/paperless --entrypoint=bash paperlessngx/paperless-ngx:latest -c "uv run pytest"` Specific fixes: - fix unreachable code around `assertRaises` blocks - fix `assertInt` typos - fix `str(e)` vs `str(e.exception)` issues - skip permission-based checks when root (in a docker container) - catch `OSError` problems when instantiating `INotify` and skip inotify-based tests when it's unavailable. * Reverts most files to dev while keeping the exception assert fixes --------- Co-authored-by: Trenton H <797416+stumpylog@users.noreply.github.com> --- .../tests/test_management_exporter.py | 9 +++-- src/documents/tests/test_management_fuzzy.py | 6 ++-- .../tests/test_management_importer.py | 35 +++++++++---------- 3 files changed, 26 insertions(+), 24 deletions(-) diff --git a/src/documents/tests/test_management_exporter.py b/src/documents/tests/test_management_exporter.py index a67e5e8c5..b01b8d47e 100644 --- a/src/documents/tests/test_management_exporter.py +++ b/src/documents/tests/test_management_exporter.py @@ -571,7 +571,7 @@ class TestExportImport( with self.assertRaises(CommandError) as e: call_command(*args) - self.assertEqual("That path isn't a directory", str(e)) + self.assertEqual("That path doesn't exist", str(e.exception)) def test_export_target_exists_but_is_file(self): """ @@ -589,7 +589,7 @@ class TestExportImport( with self.assertRaises(CommandError) as e: call_command(*args) - self.assertEqual("That path isn't a directory", str(e)) + self.assertEqual("That path isn't a directory", str(e.exception)) def test_export_target_not_writable(self): """ @@ -608,7 +608,10 @@ class TestExportImport( with self.assertRaises(CommandError) as e: call_command(*args) - self.assertEqual("That path doesn't appear to be writable", str(e)) + self.assertEqual( + "That path doesn't appear to be writable", + str(e.exception), + ) def test_no_archive(self): """ diff --git a/src/documents/tests/test_management_fuzzy.py b/src/documents/tests/test_management_fuzzy.py index 453a86082..2a4f28025 100644 --- a/src/documents/tests/test_management_fuzzy.py +++ b/src/documents/tests/test_management_fuzzy.py @@ -34,7 +34,7 @@ class TestFuzzyMatchCommand(TestCase): """ with self.assertRaises(CommandError) as e: self.call_command("--ratio", "-1") - self.assertIn("The ratio must be between 0 and 100", str(e)) + self.assertIn("The ratio must be between 0 and 100", str(e.exception)) def test_invalid_ratio_upper_limit(self): """ @@ -47,7 +47,7 @@ class TestFuzzyMatchCommand(TestCase): """ with self.assertRaises(CommandError) as e: self.call_command("--ratio", "101") - self.assertIn("The ratio must be between 0 and 100", str(e)) + self.assertIn("The ratio must be between 0 and 100", str(e.exception)) def test_invalid_process_count(self): """ @@ -60,7 +60,7 @@ class TestFuzzyMatchCommand(TestCase): """ with self.assertRaises(CommandError) as e: self.call_command("--processes", "0") - self.assertIn("There must be at least 1 process", str(e)) + self.assertIn("There must be at least 1 process", str(e.exception)) def test_no_matches(self): """ diff --git a/src/documents/tests/test_management_importer.py b/src/documents/tests/test_management_importer.py index e700ecdc9..004f5ac5f 100644 --- a/src/documents/tests/test_management_importer.py +++ b/src/documents/tests/test_management_importer.py @@ -40,10 +40,10 @@ class TestCommandImport( "--no-progress-bar", str(self.dirs.scratch_dir), ) - self.assertIn( - "That directory doesn't appear to contain a manifest.json file.", - str(e), - ) + self.assertIn( + "That directory doesn't appear to contain a manifest.json file.", + str(e.exception), + ) def test_check_manifest_malformed(self): """ @@ -66,10 +66,10 @@ class TestCommandImport( "--no-progress-bar", str(self.dirs.scratch_dir), ) - self.assertIn( - "The manifest file contains a record which does not refer to an actual document file.", - str(e), - ) + self.assertIn( + "The manifest file contains a record which does not refer to an actual document file.", + str(e.exception), + ) def test_check_manifest_file_not_found(self): """ @@ -95,7 +95,7 @@ class TestCommandImport( "--no-progress-bar", str(self.dirs.scratch_dir), ) - self.assertIn('The manifest file refers to "noexist.pdf"', str(e)) + self.assertIn('The manifest file refers to "noexist.pdf"', str(e.exception)) def test_import_permission_error(self): """ @@ -129,14 +129,14 @@ class TestCommandImport( cmd.data_only = False with self.assertRaises(CommandError) as cm: cmd.check_manifest_validity() - self.assertInt("Failed to read from original file", str(cm.exception)) + self.assertIn("Failed to read from original file", str(cm.exception)) original_path.chmod(0o444) archive_path.chmod(0o222) with self.assertRaises(CommandError) as cm: cmd.check_manifest_validity() - self.assertInt("Failed to read from archive file", str(cm.exception)) + self.assertIn("Failed to read from archive file", str(cm.exception)) def test_import_source_not_existing(self): """ @@ -149,7 +149,7 @@ class TestCommandImport( """ with self.assertRaises(CommandError) as cm: call_command("document_importer", Path("/tmp/notapath")) - self.assertInt("That path doesn't exist", str(cm.exception)) + self.assertIn("That path doesn't exist", str(cm.exception)) def test_import_source_not_readable(self): """ @@ -165,10 +165,10 @@ class TestCommandImport( path.chmod(0o222) with self.assertRaises(CommandError) as cm: call_command("document_importer", path) - self.assertInt( - "That path doesn't appear to be readable", - str(cm.exception), - ) + self.assertIn( + "That path doesn't appear to be readable", + str(cm.exception), + ) def test_import_source_does_not_exist(self): """ @@ -185,8 +185,7 @@ class TestCommandImport( with self.assertRaises(CommandError) as e: call_command("document_importer", "--no-progress-bar", str(path)) - - self.assertIn("That path doesn't exist", str(e)) + self.assertIn("That path doesn't exist", str(e.exception)) def test_import_files_exist(self): """ From 7b175ec1b37008a66ec7dfe35c3ae91e4507bda2 Mon Sep 17 00:00:00 2001 From: david-loe <56305409+david-loe@users.noreply.github.com> Date: Tue, 18 Nov 2025 20:28:52 +0100 Subject: [PATCH 096/133] Development: fix correct test delete select option (#11406) --- src/documents/tests/test_api_custom_fields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/tests/test_api_custom_fields.py b/src/documents/tests/test_api_custom_fields.py index 8e24226dc..31dd14b88 100644 --- a/src/documents/tests/test_api_custom_fields.py +++ b/src/documents/tests/test_api_custom_fields.py @@ -242,7 +242,7 @@ class TestCustomFieldsAPI(DirectoriesMixin, APITestCase): CustomFieldInstance.objects.create( document=doc, field=custom_field_select, - value_text="abc-123", + value_select="def-456", ) resp = self.client.patch( From 80be6793cf5c52add874ea711f99b4cff835686f Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 18 Nov 2025 12:05:48 -0800 Subject: [PATCH 097/133] Fix: prevent focus loss from change detection in cf query dropdown (#11409) --- .../filter-editor/filter-editor.component.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts index fecbaa170..9ffcc380b 100644 --- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts +++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts @@ -400,6 +400,9 @@ export class FilterEditorComponent @Input() set filterRules(value: FilterRule[]) { + if (value === this._filterRules) { + return + } this._filterRules = value this.documentTypeSelectionModel.clear(false) @@ -1098,7 +1101,13 @@ export class FilterEditorComponent rulesModified: boolean = false updateRules() { - this.filterRulesChange.next(this.filterRules) + const updatedRules = this.filterRules + this._filterRules = updatedRules + this.rulesModified = filterRulesDiffer( + this._unmodifiedFilterRules, + updatedRules + ) + this.filterRulesChange.next(updatedRules) } get textFilter() { From 25b5e8feded7b3e218f8d718cee5e71fbca74e0b Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Tue, 18 Nov 2025 15:45:49 -0800 Subject: [PATCH 098/133] Improves the MariaDB wait command to use mariadb-admin ping for a better check if the server is up (#11396) --- docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run index 1739edd61..9278e787d 100755 --- a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run +++ b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run @@ -51,7 +51,7 @@ wait_for_mariadb() { local -r host="${PAPERLESS_DBHOST:-localhost}" local -r port="${PAPERLESS_DBPORT:-3306}" - while ! true > "/dev/tcp/$host/$port"; do + while ! mariadb-admin --host="$host" --port="$port" ping --silent >/dev/null 2>&1; do delay_next_attempt done echo "${LOG_PREFIX} Connected to MariaDB" From cf5ac596ed450d339a8337c4db742f2f2867ad4b Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 19 Nov 2025 07:21:33 -0800 Subject: [PATCH 099/133] Performance: make move files after select custom field change async (#11391) --- src/documents/signals/handlers.py | 3 ++- src/documents/tests/test_api_custom_fields.py | 2 ++ src/documents/tests/test_file_handling.py | 6 +++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index bce376f76..0e53c9357 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -396,6 +396,7 @@ class CannotMoveFilesException(Exception): @receiver(models.signals.post_save, sender=CustomFieldInstance, weak=False) @receiver(models.signals.m2m_changed, sender=Document.tags.through, weak=False) @receiver(models.signals.post_save, sender=Document, weak=False) +@shared_task def update_filename_and_move_files( sender, instance: Document | CustomFieldInstance, @@ -559,7 +560,7 @@ def check_paths_and_prune_custom_fields(sender, instance: CustomField, **kwargs) cf_instance.save(update_fields=["value_select"]) # Update the filename and move files if necessary - update_filename_and_move_files(sender, cf_instance) + update_filename_and_move_files.delay(sender, cf_instance) @receiver(models.signals.post_delete, sender=CustomField) diff --git a/src/documents/tests/test_api_custom_fields.py b/src/documents/tests/test_api_custom_fields.py index 31dd14b88..b6e6c1342 100644 --- a/src/documents/tests/test_api_custom_fields.py +++ b/src/documents/tests/test_api_custom_fields.py @@ -4,6 +4,7 @@ from unittest.mock import ANY from django.contrib.auth.models import Permission from django.contrib.auth.models import User +from django.test import override_settings from rest_framework import status from rest_framework.test import APITestCase @@ -211,6 +212,7 @@ class TestCustomFieldsAPI(DirectoriesMixin, APITestCase): ], ) + @override_settings(CELERY_TASK_ALWAYS_EAGER=True) def test_custom_field_select_options_pruned(self): """ GIVEN: diff --git a/src/documents/tests/test_file_handling.py b/src/documents/tests/test_file_handling.py index c0070aa81..117a964ba 100644 --- a/src/documents/tests/test_file_handling.py +++ b/src/documents/tests/test_file_handling.py @@ -569,7 +569,7 @@ class TestFileHandling(DirectoriesMixin, FileSystemAssertsMixin, TestCase): self.assertEqual(generate_filename(doc), Path("document_apple.pdf")) # handler should not have been called - self.assertEqual(m.call_count, 0) + self.assertEqual(m.delay.call_count, 0) cf.extra_data = { "select_options": [ {"label": "aubergine", "id": "abc123"}, @@ -579,8 +579,8 @@ class TestFileHandling(DirectoriesMixin, FileSystemAssertsMixin, TestCase): } cf.save() self.assertEqual(generate_filename(doc), Path("document_aubergine.pdf")) - # handler should have been called - self.assertEqual(m.call_count, 1) + # handler should have been called via delay + self.assertEqual(m.delay.call_count, 1) class TestFileHandlingWithArchive(DirectoriesMixin, FileSystemAssertsMixin, TestCase): From d3bfb186e0eabdb19a84324db5baf999534513b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Nov 2025 15:49:19 +0000 Subject: [PATCH 100/133] Chore(deps-dev): Bump glob in /src/paperless_mail/templates (#11413) Bumps [glob](https://github.com/isaacs/node-glob) from 10.4.1 to 10.5.0. - [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md) - [Commits](https://github.com/isaacs/node-glob/compare/v10.4.1...v10.5.0) --- updated-dependencies: - dependency-name: glob dependency-version: 10.5.0 dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .../templates/package-lock.json | 29 +++++++++++++------ 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/src/paperless_mail/templates/package-lock.json b/src/paperless_mail/templates/package-lock.json index e6c2db15a..38817d673 100644 --- a/src/paperless_mail/templates/package-lock.json +++ b/src/paperless_mail/templates/package-lock.json @@ -429,23 +429,21 @@ } }, "node_modules/glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", + "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^3.1.2", "minimatch": "^9.0.4", "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, "funding": { "url": "https://github.com/sponsors/isaacs" } @@ -696,6 +694,12 @@ "node": ">= 6" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true + }, "node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", @@ -1694,15 +1698,16 @@ "dev": true }, "glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", + "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", "dev": true, "requires": { "foreground-child": "^3.1.0", "jackspeak": "^3.1.2", "minimatch": "^9.0.4", "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", "path-scurry": "^1.11.1" } }, @@ -1875,6 +1880,12 @@ "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", "dev": true }, + "package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true + }, "path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", From 27966858fdded20624ca21d0dac865e53142ff6c Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 19 Nov 2025 08:54:24 -0800 Subject: [PATCH 101/133] Enhancement: add more relative dates, support modified (#11411) --- .../dates-dropdown.component.html | 17 ++- .../dates-dropdown.component.ts | 47 ++++++- .../filter-editor/filter-editor.component.ts | 16 +++ src/documents/index.py | 87 +++++++++--- src/documents/tests/test_index.py | 124 ++++++++++++++++++ 5 files changed, 271 insertions(+), 20 deletions(-) diff --git a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.html b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.html index 9b243d907..74b49bbdb 100644 --- a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.html +++ b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.html @@ -26,7 +26,7 @@ i18n-placeholder (change)="onSetCreatedRelativeDate($event)"> -

{{ item.name }}{{ item.date | customDate:'mediumDate' }} – now
+
@@ -102,7 +102,7 @@ i18n-placeholder (change)="onSetAddedRelativeDate($event)"> -
{{ item.name }}{{ item.date | customDate:'mediumDate' }} – now
+
@@ -158,3 +158,16 @@
+ + +
+ {{ item.name }} + + @if (item.dateEnd) { + {{ item.date | customDate:'MMM d' }} – {{ item.dateEnd | customDate:'mediumDate' }} + } @else { + {{ item.date | customDate:'mediumDate' }} – now + } + +
+
diff --git a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.ts b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.ts index 501b43fab..e07b08959 100644 --- a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.ts +++ b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.ts @@ -1,4 +1,4 @@ -import { NgClass } from '@angular/common' +import { NgClass, NgTemplateOutlet } from '@angular/common' import { Component, EventEmitter, @@ -42,6 +42,10 @@ export enum RelativeDate { THIS_MONTH = 6, TODAY = 7, YESTERDAY = 8, + PREVIOUS_WEEK = 9, + PREVIOUS_MONTH = 10, + PREVIOUS_QUARTER = 11, + PREVIOUS_YEAR = 12, } @Component({ @@ -59,6 +63,7 @@ export enum RelativeDate { FormsModule, ReactiveFormsModule, NgClass, + NgTemplateOutlet, ], }) export class DatesDropdownComponent implements OnInit, OnDestroy { @@ -111,6 +116,46 @@ export class DatesDropdownComponent implements OnInit, OnDestroy { name: $localize`Yesterday`, date: new Date().setDate(new Date().getDate() - 1), }, + { + id: RelativeDate.PREVIOUS_WEEK, + name: $localize`Previous week`, + date: new Date( + new Date().getFullYear(), + new Date().getMonth(), + new Date().getDate() - new Date().getDay() - 6 + ), + dateEnd: new Date( + new Date().getFullYear(), + new Date().getMonth(), + new Date().getDate() - new Date().getDay() + ), + }, + { + id: RelativeDate.PREVIOUS_MONTH, + name: $localize`Previous month`, + date: new Date(new Date().getFullYear(), new Date().getMonth() - 1, 1), + dateEnd: new Date(new Date().getFullYear(), new Date().getMonth(), 0), + }, + { + id: RelativeDate.PREVIOUS_QUARTER, + name: $localize`Previous quarter`, + date: new Date( + new Date().getFullYear(), + Math.floor(new Date().getMonth() / 3) * 3 - 3, + 1 + ), + dateEnd: new Date( + new Date().getFullYear(), + Math.floor(new Date().getMonth() / 3) * 3, + 0 + ), + }, + { + id: RelativeDate.PREVIOUS_YEAR, + name: $localize`Previous year`, + date: new Date('1/1/' + (new Date().getFullYear() - 1)), + dateEnd: new Date('12/31/' + (new Date().getFullYear() - 1)), + }, ] datePlaceHolder: string diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts index 9ffcc380b..16b65c84d 100644 --- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts +++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts @@ -173,6 +173,22 @@ const RELATIVE_DATE_QUERYSTRINGS = [ relativeDate: RelativeDate.YESTERDAY, dateQuery: 'yesterday', }, + { + relativeDate: RelativeDate.PREVIOUS_WEEK, + dateQuery: 'previous week', + }, + { + relativeDate: RelativeDate.PREVIOUS_MONTH, + dateQuery: 'previous month', + }, + { + relativeDate: RelativeDate.PREVIOUS_QUARTER, + dateQuery: 'previous quarter', + }, + { + relativeDate: RelativeDate.PREVIOUS_YEAR, + dateQuery: 'previous year', + }, ] const DEFAULT_TEXT_FILTER_TARGET_OPTIONS = [ diff --git a/src/documents/index.py b/src/documents/index.py index 9446c7db1..6b994ac8c 100644 --- a/src/documents/index.py +++ b/src/documents/index.py @@ -13,6 +13,7 @@ from shutil import rmtree from typing import TYPE_CHECKING from typing import Literal +from dateutil.relativedelta import relativedelta from django.conf import settings from django.utils import timezone as django_timezone from django.utils.timezone import get_current_timezone @@ -533,32 +534,84 @@ def get_permissions_criterias(user: User | None = None) -> list: def rewrite_natural_date_keywords(query_string: str) -> str: """ Rewrites natural date keywords (e.g. added:today or added:"yesterday") to UTC range syntax for Whoosh. + This resolves timezone issues with date parsing in Whoosh as well as adding support for more + natural date keywords. """ tz = get_current_timezone() local_now = now().astimezone(tz) - today = local_now.date() - yesterday = today - timedelta(days=1) - ranges = { - "today": ( - datetime.combine(today, time.min, tzinfo=tz), - datetime.combine(today, time.max, tzinfo=tz), - ), - "yesterday": ( - datetime.combine(yesterday, time.min, tzinfo=tz), - datetime.combine(yesterday, time.max, tzinfo=tz), - ), - } - - pattern = r"(\b(?:added|created))\s*:\s*[\"']?(today|yesterday)[\"']?" + # all supported Keywords + pattern = r"(\b(?:added|created|modified))\s*:\s*[\"']?(today|yesterday|this month|previous month|previous week|previous quarter|this year|previous year)[\"']?" def repl(m): - field, keyword = m.group(1), m.group(2) - start, end = ranges[keyword] + field = m.group(1) + keyword = m.group(2).lower() + + match keyword: + case "today": + start = datetime.combine(today, time.min, tzinfo=tz) + end = datetime.combine(today, time.max, tzinfo=tz) + + case "yesterday": + yesterday = today - timedelta(days=1) + start = datetime.combine(yesterday, time.min, tzinfo=tz) + end = datetime.combine(yesterday, time.max, tzinfo=tz) + + case "this month": + start = datetime(local_now.year, local_now.month, 1, 0, 0, 0, tzinfo=tz) + end = start + relativedelta(months=1) - timedelta(seconds=1) + + case "previous month": + this_month_start = datetime( + local_now.year, + local_now.month, + 1, + 0, + 0, + 0, + tzinfo=tz, + ) + start = this_month_start - relativedelta(months=1) + end = this_month_start - timedelta(seconds=1) + + case "this year": + start = datetime(local_now.year, 1, 1, 0, 0, 0, tzinfo=tz) + end = datetime.combine(today, time.max, tzinfo=tz) + + case "previous week": + days_since_monday = local_now.weekday() + this_week_start = datetime.combine( + today - timedelta(days=days_since_monday), + time.min, + tzinfo=tz, + ) + start = this_week_start - timedelta(days=7) + end = this_week_start - timedelta(seconds=1) + + case "previous quarter": + current_quarter = (local_now.month - 1) // 3 + 1 + this_quarter_start_month = (current_quarter - 1) * 3 + 1 + this_quarter_start = datetime( + local_now.year, + this_quarter_start_month, + 1, + 0, + 0, + 0, + tzinfo=tz, + ) + start = this_quarter_start - relativedelta(months=3) + end = this_quarter_start - timedelta(seconds=1) + + case "previous year": + start = datetime(local_now.year - 1, 1, 1, 0, 0, 0, tzinfo=tz) + end = datetime(local_now.year - 1, 12, 31, 23, 59, 59, tzinfo=tz) + + # Convert to UTC and format start_str = start.astimezone(timezone.utc).strftime("%Y%m%d%H%M%S") end_str = end.astimezone(timezone.utc).strftime("%Y%m%d%H%M%S") return f"{field}:[{start_str} TO {end_str}]" - return re.sub(pattern, repl, query_string) + return re.sub(pattern, repl, query_string, flags=re.IGNORECASE) diff --git a/src/documents/tests/test_index.py b/src/documents/tests/test_index.py index 2a41542e9..f216feedb 100644 --- a/src/documents/tests/test_index.py +++ b/src/documents/tests/test_index.py @@ -2,6 +2,7 @@ from datetime import datetime from unittest import mock from django.contrib.auth.models import User +from django.test import SimpleTestCase from django.test import TestCase from django.test import override_settings from django.utils.timezone import get_current_timezone @@ -127,3 +128,126 @@ class TestAutoComplete(DirectoriesMixin, TestCase): response = self.client.get("/api/documents/?query=added:yesterday") results = response.json()["results"] self.assertEqual(len(results), 0) + + +@override_settings(TIME_ZONE="UTC") +class TestRewriteNaturalDateKeywords(SimpleTestCase): + """ + Unit tests for rewrite_natural_date_keywords function. + """ + + def _rewrite_with_now(self, query: str, now_dt: datetime) -> str: + with mock.patch("documents.index.now", return_value=now_dt): + return index.rewrite_natural_date_keywords(query) + + def _assert_rewrite_contains( + self, + query: str, + now_dt: datetime, + *expected_fragments: str, + ) -> str: + result = self._rewrite_with_now(query, now_dt) + for fragment in expected_fragments: + self.assertIn(fragment, result) + return result + + def test_range_keywords(self): + """ + Test various different range keywords + """ + cases = [ + ( + "added:today", + datetime(2025, 7, 20, 15, 30, 45, tzinfo=timezone.utc), + ("added:[20250720", "TO 20250720"), + ), + ( + "added:yesterday", + datetime(2025, 7, 20, 15, 30, 45, tzinfo=timezone.utc), + ("added:[20250719", "TO 20250719"), + ), + ( + "added:this month", + datetime(2025, 7, 15, 12, 0, 0, tzinfo=timezone.utc), + ("added:[20250701", "TO 20250731"), + ), + ( + "added:previous month", + datetime(2025, 7, 15, 12, 0, 0, tzinfo=timezone.utc), + ("added:[20250601", "TO 20250630"), + ), + ( + "added:this year", + datetime(2025, 7, 15, 12, 0, 0, tzinfo=timezone.utc), + ("added:[20250101", "TO 20250715"), + ), + ( + "added:previous year", + datetime(2025, 7, 15, 12, 0, 0, tzinfo=timezone.utc), + ("added:[20240101", "TO 20241231"), + ), + # Previous quarter from July 15, 2025 is April-June. + ( + "added:previous quarter", + datetime(2025, 7, 15, 12, 0, 0, tzinfo=timezone.utc), + ("added:[20250401", "TO 20250630"), + ), + # July 20, 2025 is a Sunday (weekday 6) so previous week is July 7-13. + ( + "added:previous week", + datetime(2025, 7, 20, 12, 0, 0, tzinfo=timezone.utc), + ("added:[20250707", "TO 20250713"), + ), + ] + + for query, now_dt, fragments in cases: + with self.subTest(query=query): + self._assert_rewrite_contains(query, now_dt, *fragments) + + def test_additional_fields(self): + fixed_now = datetime(2025, 7, 20, 15, 30, 45, tzinfo=timezone.utc) + # created + self._assert_rewrite_contains("created:today", fixed_now, "created:[20250720") + # modified + self._assert_rewrite_contains("modified:today", fixed_now, "modified:[20250720") + + def test_basic_syntax_variants(self): + """ + Test that quoting, casing, and multi-clause queries are parsed. + """ + fixed_now = datetime(2025, 7, 20, 15, 30, 45, tzinfo=timezone.utc) + + # quoted keywords + result1 = self._rewrite_with_now('added:"today"', fixed_now) + result2 = self._rewrite_with_now("added:'today'", fixed_now) + self.assertIn("added:[20250720", result1) + self.assertIn("added:[20250720", result2) + + # case insensitivity + for query in ("added:TODAY", "added:Today", "added:ToDaY"): + with self.subTest(case_variant=query): + self._assert_rewrite_contains(query, fixed_now, "added:[20250720") + + # multiple clauses + result = self._rewrite_with_now("added:today created:yesterday", fixed_now) + self.assertIn("added:[20250720", result) + self.assertIn("created:[20250719", result) + + def test_no_match(self): + """ + Test that queries without keywords are unchanged. + """ + query = "title:test content:example" + result = index.rewrite_natural_date_keywords(query) + self.assertEqual(query, result) + + @override_settings(TIME_ZONE="Pacific/Auckland") + def test_timezone_awareness(self): + """ + Test timezone conversion. + """ + # July 20, 2025 1:00 AM NZST = July 19, 2025 13:00 UTC + fixed_now = datetime(2025, 7, 20, 1, 0, 0, tzinfo=get_current_timezone()) + result = self._rewrite_with_now("added:today", fixed_now) + # Should convert to UTC properly + self.assertIn("added:[20250719", result) From 8c335321cd9f51175f5695c7776ad2c3284fbc3d Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 19 Nov 2025 16:56:11 +0000 Subject: [PATCH 102/133] Auto translate strings --- src-ui/messages.xlf | 114 +++++++++++++++++++++++++++----------------- 1 file changed, 69 insertions(+), 45 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 11a735f25..273393b46 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -1157,7 +1157,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 @@ -3371,7 +3371,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3524,17 +3524,6 @@ 101 - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - From @@ -3580,59 +3569,94 @@ 93 + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts 29 + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Matching algorithm @@ -6811,7 +6835,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -7372,7 +7396,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 @@ -7999,7 +8023,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -8195,56 +8219,56 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 @@ -8253,14 +8277,14 @@ )?.name"/> src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 @@ -8269,14 +8293,14 @@ )?.name"/> src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 @@ -8285,70 +8309,70 @@ )?.name"/> src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 From 4a8d3c858c483f1cd5197fa12404e7b60522d32d Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 19 Nov 2025 12:58:10 -0800 Subject: [PATCH 103/133] Chore: re-enable docker builds for PRs (#11398) --- .github/workflows/ci.yml | 39 ++++++++++++++++++++++++++++++++------- 1 file changed, 32 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 76ab247fb..e1cc4c3ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -353,9 +353,9 @@ jobs: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} run: cd src-ui && pnpm run build --configuration=production build-docker-image: - name: Build Docker image for ${{ github.ref_name }} + name: Build Docker image for ${{ github.event_name == 'pull_request' && github.head_ref || github.ref_name }} runs-on: ubuntu-24.04 - if: github.event_name == 'push' && (startsWith(github.ref, 'refs/heads/feature-') || startsWith(github.ref, 'refs/heads/fix-') || github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/beta' || contains(github.ref, 'beta.rc') || startsWith(github.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/heads/l10n_')) + if: (github.event_name == 'push' && (startsWith(github.ref, 'refs/heads/feature-') || startsWith(github.ref, 'refs/heads/fix-') || github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/beta' || contains(github.ref, 'beta.rc') || startsWith(github.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/heads/l10n_'))) || (github.event_name == 'pull_request' && (startsWith(github.head_ref, 'feature-') || startsWith(github.head_ref, 'fix-') || github.head_ref == 'dev' || github.head_ref == 'beta' || contains(github.head_ref, 'beta.rc') || startsWith(github.head_ref, 'l10n_'))) concurrency: group: ${{ github.workflow }}-build-docker-image-${{ github.ref_name }} cancel-in-progress: true @@ -364,6 +364,23 @@ jobs: - tests-frontend - tests-frontend-e2e steps: + - name: Prepare build variables + id: build-vars + uses: actions/github-script@v8 + with: + result-encoding: string + script: | + const isPR = context.eventName === 'pull_request'; + const defaultRefName = context.ref.replace('refs/heads/', ''); + const headRef = isPR ? context.payload.pull_request.head.ref : defaultRefName; + const buildRef = isPR ? `refs/heads/${headRef}` : context.ref; + const buildCacheKey = headRef.split('/').join('-'); + const canPush = context.eventName === 'push' || (isPR && context.payload.pull_request.head.repo.full_name === `${context.repo.owner}/${context.repo.repo}`); + + core.setOutput('build-ref', buildRef); + core.setOutput('build-ref-name', headRef); + core.setOutput('build-cache-key', buildCacheKey); + core.setOutput('can-push', canPush ? 'true' : 'false'); - name: Check pushing to Docker Hub id: push-other-places # Only push to Dockerhub from the main repo AND the ref is either: @@ -372,8 +389,11 @@ jobs: # beta # a tag # Otherwise forks would require a Docker Hub account and secrets setup + env: + BUILD_REF: ${{ steps.build-vars.outputs.build-ref }} + BUILD_REF_NAME: ${{ steps.build-vars.outputs.build-ref-name }} run: | - if [[ ${{ github.repository_owner }} == "paperless-ngx" && ( ${{ github.ref_name }} == "dev" || ${{ github.ref_name }} == "beta" || ${{ startsWith(github.ref, 'refs/tags/v') }} == "true" ) ]] ; then + if [[ ${{ github.repository_owner }} == "paperless-ngx" && ( "$BUILD_REF_NAME" == "dev" || "$BUILD_REF_NAME" == "beta" || $BUILD_REF == refs/tags/v* || $BUILD_REF == *beta.rc* ) ]] ; then echo "Enabling DockerHub image push" echo "enable=true" >> $GITHUB_OUTPUT else @@ -397,6 +417,8 @@ jobs: tags: | # Tag branches with branch name type=ref,event=branch + # Pull requests need a sanitized branch tag for pushing images + type=raw,value=${{ steps.build-vars.outputs.build-cache-key }},enable=${{ github.event_name == 'pull_request' }} # Process semver tags # For a tag x.y.z or vX.Y.Z, output an x.y.z and x.y image tag type=semver,pattern={{version}} @@ -439,7 +461,7 @@ jobs: context: . file: ./Dockerfile platforms: linux/amd64,linux/arm64 - push: ${{ github.event_name != 'pull_request' }} + push: ${{ steps.build-vars.outputs.can-push == 'true' }} tags: ${{ steps.docker-meta.outputs.tags }} labels: ${{ steps.docker-meta.outputs.labels }} build-args: | @@ -447,18 +469,20 @@ jobs: # Get cache layers from this branch, then dev # This allows new branches to get at least some cache benefits, generally from dev cache-from: | - type=registry,ref=ghcr.io/${{ steps.set-ghcr-repository.outputs.ghcr-repository }}/builder/cache/app:${{ github.ref_name }} + type=registry,ref=ghcr.io/${{ steps.set-ghcr-repository.outputs.ghcr-repository }}/builder/cache/app:${{ steps.build-vars.outputs.build-cache-key }} type=registry,ref=ghcr.io/${{ steps.set-ghcr-repository.outputs.ghcr-repository }}/builder/cache/app:dev - cache-to: | - type=registry,mode=max,ref=ghcr.io/${{ steps.set-ghcr-repository.outputs.ghcr-repository }}/builder/cache/app:${{ github.ref_name }} + cache-to: ${{ steps.build-vars.outputs.can-push == 'true' && format('type=registry,mode=max,ref=ghcr.io/{0}/builder/cache/app:{1}', steps.set-ghcr-repository.outputs.ghcr-repository, steps.build-vars.outputs.build-cache-key) || '' }} - name: Inspect image + if: steps.build-vars.outputs.can-push == 'true' run: | docker buildx imagetools inspect ${{ fromJSON(steps.docker-meta.outputs.json).tags[0] }} - name: Export frontend artifact from docker + if: steps.build-vars.outputs.can-push == 'true' run: | docker create --name frontend-extract ${{ fromJSON(steps.docker-meta.outputs.json).tags[0] }} docker cp frontend-extract:/usr/src/paperless/src/documents/static/frontend src/documents/static/frontend/ - name: Upload frontend artifact + if: steps.build-vars.outputs.can-push == 'true' uses: actions/upload-artifact@v5 with: name: frontend-compiled @@ -469,6 +493,7 @@ jobs: needs: - build-docker-image - documentation + if: github.event_name == 'push' runs-on: ubuntu-24.04 steps: - name: Checkout From bc622d67fc273a1a972e0c46b916564c0a917947 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Wed, 19 Nov 2025 13:34:29 -0800 Subject: [PATCH 104/133] Chore: Configure pre-commit to format our s6-overlay files (#11414) --- .editorconfig | 4 +++ .pre-commit-config.yaml | 12 +++---- .../etc/s6-overlay/s6-rc.d/init-env-file/run | 2 +- .../s6-overlay/s6-rc.d/init-wait-for-db/run | 32 +++++++++---------- .../etc/s6-overlay/s6-rc.d/svc-webserver/run | 6 ++-- 5 files changed, 30 insertions(+), 26 deletions(-) diff --git a/.editorconfig b/.editorconfig index 8111f01d8..a8b21f510 100644 --- a/.editorconfig +++ b/.editorconfig @@ -11,6 +11,10 @@ end_of_line = lf charset = utf-8 max_line_length = 79 +[*.sh] +indent_style = tab +indent_size = 1 + [{*.html,*.css,*.js}] max_line_length = off diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7c0167d94..92e18bfbd 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -49,12 +49,12 @@ repos: - 'prettier-plugin-organize-imports@4.1.0' # Python hooks - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.14.0 + rev: v0.14.5 hooks: - id: ruff-check - id: ruff-format - repo: https://github.com/tox-dev/pyproject-fmt - rev: "v2.11.0" + rev: "v2.11.1" hooks: - id: pyproject-fmt # Dockerfile hooks @@ -64,11 +64,11 @@ repos: - id: hadolint # Shell script hooks - repo: https://github.com/lovesegfault/beautysh - rev: v6.2.1 + rev: v6.4.2 hooks: - id: beautysh - additional_dependencies: - - setuptools + types: [file] + files: (\.sh$|/run$|/finish$) args: - "--tab" - repo: https://github.com/shellcheck-py/shellcheck-py @@ -76,7 +76,7 @@ repos: hooks: - id: shellcheck - repo: https://github.com/google/yamlfmt - rev: v0.18.0 + rev: v0.20.0 hooks: - id: yamlfmt exclude: "^src-ui/pnpm-lock.yaml" diff --git a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-env-file/run b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-env-file/run index d2c118ddb..2fc64e24e 100755 --- a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-env-file/run +++ b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-env-file/run @@ -29,5 +29,5 @@ if find /run/s6/container_environment/*"_FILE" -maxdepth 1 > /dev/null 2>&1; the fi done else - echo "${log_prefix} No *_FILE environment found" + echo "${log_prefix} No *_FILE environment found" fi diff --git a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run index 9278e787d..8ec900212 100755 --- a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run +++ b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run @@ -12,24 +12,24 @@ declare -i DELAY=0 declare -i STARTED_AT=${EPOCHSECONDS:?EPOCHSECONDS var unset} delay_next_attempt() { - local -i elapsed=$(( EPOCHSECONDS - STARTED_AT )) - local -ri remaining=$(( TIMEOUT - elapsed )) + local -i elapsed=$(( EPOCHSECONDS - STARTED_AT )) + local -ri remaining=$(( TIMEOUT - elapsed )) - if (( remaining <= 0 )); then - echo "${LOG_PREFIX} Unable to connect after $elapsed seconds." - exit 1 - fi + if (( remaining <= 0 )); then + echo "${LOG_PREFIX} Unable to connect after $elapsed seconds." + exit 1 + fi - DELAY+=1 + DELAY+=1 - # clamp to remaining time - if (( DELAY > remaining )); then - DELAY=$remaining - fi + # clamp to remaining time + if (( DELAY > remaining )); then + DELAY=$remaining + fi - ATTEMPT+=1 - echo "${LOG_PREFIX} Attempt $ATTEMPT failed! Trying again in $DELAY seconds..." - sleep "$DELAY" + ATTEMPT+=1 + echo "${LOG_PREFIX} Attempt $ATTEMPT failed! Trying again in $DELAY seconds..." + sleep "$DELAY" } wait_for_postgres() { @@ -40,7 +40,7 @@ wait_for_postgres() { local -r user="${PAPERLESS_DBUSER:-paperless}" while ! pg_isready -h "${host}" -p "${port}" --username "${user}"; do - delay_next_attempt + delay_next_attempt done echo "${LOG_PREFIX} Connected to PostgreSQL" } @@ -52,7 +52,7 @@ wait_for_mariadb() { local -r port="${PAPERLESS_DBPORT:-3306}" while ! mariadb-admin --host="$host" --port="$port" ping --silent >/dev/null 2>&1; do - delay_next_attempt + delay_next_attempt done echo "${LOG_PREFIX} Connected to MariaDB" } diff --git a/docker/rootfs/etc/s6-overlay/s6-rc.d/svc-webserver/run b/docker/rootfs/etc/s6-overlay/s6-rc.d/svc-webserver/run index 841dad204..64b458150 100755 --- a/docker/rootfs/etc/s6-overlay/s6-rc.d/svc-webserver/run +++ b/docker/rootfs/etc/s6-overlay/s6-rc.d/svc-webserver/run @@ -10,11 +10,11 @@ export GRANIAN_WORKERS=${GRANIAN_WORKERS:-${PAPERLESS_WEBSERVER_WORKERS:-1}} # Only set GRANIAN_URL_PATH_PREFIX if PAPERLESS_FORCE_SCRIPT_NAME is set if [[ -n "${PAPERLESS_FORCE_SCRIPT_NAME}" ]]; then - export GRANIAN_URL_PATH_PREFIX=${PAPERLESS_FORCE_SCRIPT_NAME} + export GRANIAN_URL_PATH_PREFIX=${PAPERLESS_FORCE_SCRIPT_NAME} fi if [[ -n "${USER_IS_NON_ROOT}" ]]; then - exec granian --interface asginl --ws --loop uvloop "paperless.asgi:application" + exec granian --interface asginl --ws --loop uvloop "paperless.asgi:application" else - exec s6-setuidgid paperless granian --interface asginl --ws --loop uvloop "paperless.asgi:application" + exec s6-setuidgid paperless granian --interface asginl --ws --loop uvloop "paperless.asgi:application" fi From c5e80a7e4ffd06684a57c4221784680ff4e2f9f6 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Fri, 21 Nov 2025 11:42:22 -0800 Subject: [PATCH 105/133] chore: Upgrades psycopg to 3.2.12 (#11420) --- pyproject.toml | 8 ++++---- uv.lock | 42 +++++++++++++++++++++--------------------- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0654be626..e90da697d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -77,9 +77,9 @@ optional-dependencies.mariadb = [ "mysqlclient~=2.2.7", ] optional-dependencies.postgres = [ - "psycopg[c,pool]==3.2.9", + "psycopg[c,pool]==3.2.12", # Direct dependency for proper resolution of the pre-built wheels - "psycopg-c==3.2.9", + "psycopg-c==3.2.12", "psycopg-pool==3.2.7", ] optional-dependencies.webserver = [ @@ -150,8 +150,8 @@ environments = [ [tool.uv.sources] # Markers are chosen to select these almost exclusively when building the Docker image psycopg-c = [ - { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_x86_64.whl", marker = "sys_platform == 'linux' and platform_machine == 'x86_64' and python_version == '3.12'" }, - { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_aarch64.whl", marker = "sys_platform == 'linux' and platform_machine == 'aarch64' and python_version == '3.12'" }, + { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_x86_64.whl", marker = "sys_platform == 'linux' and platform_machine == 'x86_64' and python_version == '3.12'" }, + { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_aarch64.whl", marker = "sys_platform == 'linux' and platform_machine == 'aarch64' and python_version == '3.12'" }, ] zxing-cpp = [ { url = "https://github.com/paperless-ngx/builder/releases/download/zxing-2.3.0/zxing_cpp-2.3.0-cp312-cp312-linux_x86_64.whl", marker = "sys_platform == 'linux' and platform_machine == 'x86_64' and python_version == '3.12'" }, diff --git a/uv.lock b/uv.lock index 41eb0778a..9734787ce 100644 --- a/uv.lock +++ b/uv.lock @@ -2181,9 +2181,9 @@ mariadb = [ ] postgres = [ { name = "psycopg", extra = ["c", "pool"], marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "psycopg-c", version = "3.2.9", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version != '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux') or (python_full_version != '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux') or (platform_machine != 'aarch64' and platform_machine != 'x86_64' and sys_platform == 'linux') or sys_platform == 'darwin'" }, - { name = "psycopg-c", version = "3.2.9", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_aarch64.whl" }, marker = "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux'" }, - { name = "psycopg-c", version = "3.2.9", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_x86_64.whl" }, marker = "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "psycopg-c", version = "3.2.12", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version != '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux') or (python_full_version != '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux') or (platform_machine != 'aarch64' and platform_machine != 'x86_64' and sys_platform == 'linux') or sys_platform == 'darwin'" }, + { name = "psycopg-c", version = "3.2.12", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_aarch64.whl" }, marker = "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux'" }, + { name = "psycopg-c", version = "3.2.12", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_x86_64.whl" }, marker = "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'" }, { name = "psycopg-pool", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] webserver = [ @@ -2293,10 +2293,10 @@ requires-dist = [ { name = "ocrmypdf", specifier = "~=16.12.0" }, { name = "pathvalidate", specifier = "~=3.3.1" }, { name = "pdf2image", specifier = "~=1.17.0" }, - { name = "psycopg", extras = ["c", "pool"], marker = "extra == 'postgres'", specifier = "==3.2.9" }, - { name = "psycopg-c", marker = "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'postgres'", url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_aarch64.whl" }, - { name = "psycopg-c", marker = "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'postgres'", url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_x86_64.whl" }, - { name = "psycopg-c", marker = "(python_full_version != '3.12.*' and platform_machine == 'aarch64' and extra == 'postgres') or (python_full_version != '3.12.*' and platform_machine == 'x86_64' and extra == 'postgres') or (platform_machine != 'aarch64' and platform_machine != 'x86_64' and extra == 'postgres') or (sys_platform != 'linux' and extra == 'postgres')", specifier = "==3.2.9" }, + { name = "psycopg", extras = ["c", "pool"], marker = "extra == 'postgres'", specifier = "==3.2.12" }, + { name = "psycopg-c", marker = "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'postgres'", url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_aarch64.whl" }, + { name = "psycopg-c", marker = "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'postgres'", url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_x86_64.whl" }, + { name = "psycopg-c", marker = "(python_full_version != '3.12.*' and platform_machine == 'aarch64' and extra == 'postgres') or (python_full_version != '3.12.*' and platform_machine == 'x86_64' and extra == 'postgres') or (platform_machine != 'aarch64' and platform_machine != 'x86_64' and extra == 'postgres') or (sys_platform != 'linux' and extra == 'postgres')", specifier = "==3.2.12" }, { name = "psycopg-pool", marker = "extra == 'postgres'", specifier = "==3.2.7" }, { name = "python-dateutil", specifier = "~=2.9.0" }, { name = "python-dotenv", specifier = "~=1.2.1" }, @@ -2675,21 +2675,21 @@ wheels = [ [[package]] name = "psycopg" -version = "3.2.9" +version = "3.2.12" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions", marker = "(python_full_version < '3.13' and sys_platform == 'darwin') or (python_full_version < '3.13' and sys_platform == 'linux')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/27/4a/93a6ab570a8d1a4ad171a1f4256e205ce48d828781312c0bbaff36380ecb/psycopg-3.2.9.tar.gz", hash = "sha256:2fbb46fcd17bc81f993f28c47f1ebea38d66ae97cc2dbc3cad73b37cefbff700", size = 158122, upload-time = "2025-05-13T16:11:15.533Z" } +sdist = { url = "https://files.pythonhosted.org/packages/a8/77/c72d10262b872617e509a0c60445afcc4ce2cd5cd6bc1c97700246d69c85/psycopg-3.2.12.tar.gz", hash = "sha256:85c08d6f6e2a897b16280e0ff6406bef29b1327c045db06d21f364d7cd5da90b", size = 160642, upload-time = "2025-10-26T00:46:03.045Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/44/b0/a73c195a56eb6b92e937a5ca58521a5c3346fb233345adc80fd3e2f542e2/psycopg-3.2.9-py3-none-any.whl", hash = "sha256:01a8dadccdaac2123c916208c96e06631641c0566b22005493f09663c7a8d3b6", size = 202705, upload-time = "2025-05-13T16:06:26.584Z" }, + { url = "https://files.pythonhosted.org/packages/c8/28/8c4f90e415411dc9c78d6ba10b549baa324659907c13f64bfe3779d4066c/psycopg-3.2.12-py3-none-any.whl", hash = "sha256:8a1611a2d4c16ae37eada46438be9029a35bb959bb50b3d0e1e93c0f3d54c9ee", size = 206765, upload-time = "2025-10-26T00:10:42.173Z" }, ] [package.optional-dependencies] c = [ - { name = "psycopg-c", version = "3.2.9", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version != '3.12.*' and implementation_name != 'pypy' and platform_machine == 'aarch64' and sys_platform == 'linux') or (python_full_version != '3.12.*' and implementation_name != 'pypy' and platform_machine == 'x86_64' and sys_platform == 'linux') or (implementation_name != 'pypy' and platform_machine != 'aarch64' and platform_machine != 'x86_64' and sys_platform == 'linux') or (implementation_name != 'pypy' and sys_platform == 'darwin')" }, - { name = "psycopg-c", version = "3.2.9", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_aarch64.whl" }, marker = "python_full_version == '3.12.*' and implementation_name != 'pypy' and platform_machine == 'aarch64' and sys_platform == 'linux'" }, - { name = "psycopg-c", version = "3.2.9", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_x86_64.whl" }, marker = "python_full_version == '3.12.*' and implementation_name != 'pypy' and platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "psycopg-c", version = "3.2.12", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version != '3.12.*' and implementation_name != 'pypy' and platform_machine == 'aarch64' and sys_platform == 'linux') or (python_full_version != '3.12.*' and implementation_name != 'pypy' and platform_machine == 'x86_64' and sys_platform == 'linux') or (implementation_name != 'pypy' and platform_machine != 'aarch64' and platform_machine != 'x86_64' and sys_platform == 'linux') or (implementation_name != 'pypy' and sys_platform == 'darwin')" }, + { name = "psycopg-c", version = "3.2.12", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_aarch64.whl" }, marker = "python_full_version == '3.12.*' and implementation_name != 'pypy' and platform_machine == 'aarch64' and sys_platform == 'linux'" }, + { name = "psycopg-c", version = "3.2.12", source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_x86_64.whl" }, marker = "python_full_version == '3.12.*' and implementation_name != 'pypy' and platform_machine == 'x86_64' and sys_platform == 'linux'" }, ] pool = [ { name = "psycopg-pool", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, @@ -2697,7 +2697,7 @@ pool = [ [[package]] name = "psycopg-c" -version = "3.2.9" +version = "3.2.12" source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.11' and sys_platform == 'darwin'", @@ -2705,28 +2705,28 @@ resolution-markers = [ "(python_full_version >= '3.11' and platform_machine != 'aarch64' and platform_machine != 'x86_64' and sys_platform == 'linux') or (python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux') or (python_full_version >= '3.13' and platform_machine == 'aarch64' and sys_platform == 'linux') or (python_full_version == '3.11.*' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux')", "python_full_version < '3.11' and sys_platform == 'linux'", ] -sdist = { url = "https://files.pythonhosted.org/packages/83/7f/6147cb842081b0b32692bf5a0fdf58e9ac95418ebac1184d4431ec44b85f/psycopg_c-3.2.9.tar.gz", hash = "sha256:8c9f654f20c6c56bddc4543a3caab236741ee94b6732ab7090b95605502210e2", size = 609538, upload-time = "2025-05-13T16:11:19.856Z" } +sdist = { url = "https://files.pythonhosted.org/packages/68/27/33699874745d7bb195e78fd0a97349908b64d3ec5fea7b8e5e52f56df04c/psycopg_c-3.2.12.tar.gz", hash = "sha256:1c80042067d5df90d184c6fbd58661350b3620f99d87a01c882953c4d5dfa52b", size = 608386, upload-time = "2025-10-26T00:46:08.727Z" } [[package]] name = "psycopg-c" -version = "3.2.9" -source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_aarch64.whl" } +version = "3.2.12" +source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_aarch64.whl" } resolution-markers = [ "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux'", ] wheels = [ - { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_aarch64.whl", hash = "sha256:f045e0e0c532d95c9056329439d7c8578a32842be6d26c666a50bec447972e54" }, + { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_aarch64.whl", hash = "sha256:3492dc3760133ce8b422786136f41763acaa2dc890d3ab3e58b49627fd1e4e92" }, ] [[package]] name = "psycopg-c" -version = "3.2.9" -source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_x86_64.whl" } +version = "3.2.12" +source = { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_x86_64.whl" } resolution-markers = [ "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] wheels = [ - { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.9/psycopg_c-3.2.9-cp312-cp312-linux_x86_64.whl", hash = "sha256:250c357319242da102047b04c5cc78af872dbf85c2cb05abf114e1fb5f207917" }, + { url = "https://github.com/paperless-ngx/builder/releases/download/psycopg-bookworm-3.2.12/psycopg_c-3.2.12-cp312-cp312-linux_x86_64.whl", hash = "sha256:64ca43e3521a761c2ae5ea883c71bae619abe0e6392d388424776c93e55de8a8" }, ] [[package]] From a96db50b0aadfb561f8830e30c1f0f65569b5c2e Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Fri, 21 Nov 2025 12:07:57 -0800 Subject: [PATCH 106/133] Feature: Replace duplicated static files with symlinks (#11418) --- Dockerfile | 3 +- docker/rootfs/usr/local/bin/deduplicate.py | 167 +++++++++++++++++++++ 2 files changed, 169 insertions(+), 1 deletion(-) create mode 100755 docker/rootfs/usr/local/bin/deduplicate.py diff --git a/Dockerfile b/Dockerfile index aca06edc5..61c6a63a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -254,7 +254,8 @@ RUN set -eux \ && chown --from root:root --changes --recursive paperless:paperless /usr/src/paperless \ && echo "Collecting static files" \ && s6-setuidgid paperless python3 manage.py collectstatic --clear --no-input --link \ - && s6-setuidgid paperless python3 manage.py compilemessages + && s6-setuidgid paperless python3 manage.py compilemessages \ + && /usr/local/bin/deduplicate.py --verbose /usr/src/paperless/static/ VOLUME ["/usr/src/paperless/data", \ "/usr/src/paperless/media", \ diff --git a/docker/rootfs/usr/local/bin/deduplicate.py b/docker/rootfs/usr/local/bin/deduplicate.py new file mode 100755 index 000000000..c071cf043 --- /dev/null +++ b/docker/rootfs/usr/local/bin/deduplicate.py @@ -0,0 +1,167 @@ +#!/usr/bin/env python3 +""" +File deduplication script that replaces identical files with symlinks. +Uses SHA256 hashing to identify duplicate files. +""" + +import hashlib +from collections import defaultdict +from pathlib import Path + +import click +import humanize + + +def calculate_sha256(filepath: Path) -> str | None: + sha256_hash = hashlib.sha256() + try: + with filepath.open("rb") as f: + # Read file in chunks to handle large files efficiently + while chunk := f.read(65536): # 64KB chunks + sha256_hash.update(chunk) + return sha256_hash.hexdigest() + except OSError as e: + click.echo(f"Error reading {filepath}: {e}", err=True) + return None + + +def find_duplicate_files(directory: Path) -> dict[str, list[Path]]: + """ + Recursively scan directory and group files by their SHA256 hash. + Returns a dictionary mapping hash -> list of file paths. + """ + hash_to_files: dict[str, list[Path]] = defaultdict(list) + + for filepath in directory.rglob("*"): + # Skip symlinks + if filepath.is_symlink(): + continue + + # Skip if not a regular file + if not filepath.is_file(): + continue + + file_hash = calculate_sha256(filepath) + if file_hash: + hash_to_files[file_hash].append(filepath) + + # Filter to only return hashes with duplicates + return {h: files for h, files in hash_to_files.items() if len(files) > 1} + + +def replace_with_symlinks( + duplicate_groups: dict[str, list[Path]], + *, + dry_run: bool = False, +) -> tuple[int, int]: + """ + Replace duplicate files with symlinks to the first occurrence. + Returns (number_of_files_replaced, space_saved_in_bytes). + """ + total_duplicates = 0 + space_saved = 0 + + for file_hash, file_list in duplicate_groups.items(): + # Keep the first file as the original, replace others with symlinks + original_file = file_list[0] + duplicates = file_list[1:] + + click.echo(f"Found {len(duplicates)} duplicate(s) of: {original_file}") + + for duplicate in duplicates: + try: + # Get file size before deletion + file_size = duplicate.stat().st_size + + if dry_run: + click.echo(f" [DRY RUN] Would replace: {duplicate}") + else: + # Remove the duplicate file + duplicate.unlink() + + # Create relative symlink if possible, otherwise absolute + try: + # Try to create a relative symlink + rel_path = original_file.relative_to(duplicate.parent) + duplicate.symlink_to(rel_path) + click.echo(f" Replaced: {duplicate} -> {rel_path}") + except ValueError: + # Fall back to absolute path + duplicate.symlink_to(original_file.resolve()) + click.echo(f" Replaced: {duplicate} -> {original_file}") + + space_saved += file_size + + total_duplicates += 1 + + except OSError as e: + click.echo(f" Error replacing {duplicate}: {e}", err=True) + + return total_duplicates, space_saved + + +@click.command() +@click.argument( + "directory", + type=click.Path( + exists=True, + file_okay=False, + dir_okay=True, + readable=True, + path_type=Path, + ), +) +@click.option( + "--dry-run", + is_flag=True, + help="Show what would be done without making changes", +) +@click.option("--verbose", "-v", is_flag=True, help="Show verbose output") +def deduplicate(directory: Path, *, dry_run: bool, verbose: bool) -> None: + """ + Recursively search DIRECTORY for identical files and replace them with symlinks. + + Uses SHA256 hashing to identify duplicate files. The first occurrence of each + unique file is kept, and all duplicates are replaced with symlinks pointing to it. + """ + directory = directory.resolve() + + click.echo(f"Scanning directory: {directory}") + if dry_run: + click.echo("Running in DRY RUN mode - no changes will be made") + + # Find all duplicate files + click.echo("Calculating file hashes...") + duplicate_groups = find_duplicate_files(directory) + + if not duplicate_groups: + click.echo("No duplicate files found!") + return + + total_files = sum(len(files) - 1 for files in duplicate_groups.values()) + click.echo( + f"Found {len(duplicate_groups)} group(s) of duplicates " + f"({total_files} files to deduplicate)", + ) + + if verbose: + for file_hash, files in duplicate_groups.items(): + click.echo(f"Hash: {file_hash}") + for f in files: + click.echo(f" - {f}") + + # Replace duplicates with symlinks + click.echo("Processing duplicates...") + num_replaced, space_saved = replace_with_symlinks(duplicate_groups, dry_run=dry_run) + + # Summary + click.echo( + f"{'Would replace' if dry_run else 'Replaced'} " + f"{num_replaced} duplicate file(s)", + ) + if not dry_run: + click.echo(f"Space saved: {humanize.naturalsize(space_saved, binary=True)}") + + +if __name__ == "__main__": + deduplicate() From 93338a0a823b262a4cf7a6cd09f4691146964f34 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 21 Nov 2025 15:52:12 -0800 Subject: [PATCH 107/133] Fixhancement: more log viewer improvements (#11426) --- src-ui/setup-jest.ts | 4 ++ .../components/admin/logs/logs.component.html | 24 ++++++------ .../components/admin/logs/logs.component.scss | 16 ++++++-- .../admin/logs/logs.component.spec.ts | 7 ++++ .../components/admin/logs/logs.component.ts | 39 +++++++++++++------ 5 files changed, 64 insertions(+), 26 deletions(-) diff --git a/src-ui/setup-jest.ts b/src-ui/setup-jest.ts index c7bcabddb..df5e9d175 100644 --- a/src-ui/setup-jest.ts +++ b/src-ui/setup-jest.ts @@ -145,6 +145,10 @@ HTMLCanvasElement.prototype.getContext = < typeof HTMLCanvasElement.prototype.getContext >jest.fn() +if (!HTMLElement.prototype.scrollTo) { + HTMLElement.prototype.scrollTo = jest.fn() +} + jest.mock('uuid', () => ({ v4: jest.fn(() => 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (char: string) => { diff --git a/src-ui/src/app/components/admin/logs/logs.component.html b/src-ui/src/app/components/admin/logs/logs.component.html index 70dcda86d..b3df5ff89 100644 --- a/src-ui/src/app/components/admin/logs/logs.component.html +++ b/src-ui/src/app/components/admin/logs/logs.component.html @@ -41,21 +41,21 @@ } -
- - +
@if (loading && !logFiles.length) {
Loading...
+ } @else { +

{{log.message}}

} -

- {{log.message}} -

- +
+ diff --git a/src-ui/src/app/components/admin/logs/logs.component.scss b/src-ui/src/app/components/admin/logs/logs.component.scss index 56fd2e8f3..25ab0b8ac 100644 --- a/src-ui/src/app/components/admin/logs/logs.component.scss +++ b/src-ui/src/app/components/admin/logs/logs.component.scss @@ -16,11 +16,21 @@ } .log-container { - overflow-y: scroll; - height: calc(100vh - 200px); - top: 0; + height: calc(100vh - 190px); + overflow-y: auto; p { white-space: pre-wrap; } } + +.jump-to-bottom { + opacity: 0; + pointer-events: none; + transition: opacity 120ms ease-in-out; +} + +.jump-to-bottom.visible { + opacity: 1; + pointer-events: auto; +} diff --git a/src-ui/src/app/components/admin/logs/logs.component.spec.ts b/src-ui/src/app/components/admin/logs/logs.component.spec.ts index 728916830..1b8425427 100644 --- a/src-ui/src/app/components/admin/logs/logs.component.spec.ts +++ b/src-ui/src/app/components/admin/logs/logs.component.spec.ts @@ -110,4 +110,11 @@ describe('LogsComponent', () => { jest.advanceTimersByTime(1) expect(reloadSpy).toHaveBeenCalledTimes(initialCalls + 1) }) + + it('should update jump to bottom visibility on scroll', () => { + component.showJumpToBottom = false + jest.spyOn(component as any, 'isNearBottom').mockReturnValue(false) + component.onScroll() + expect(component.showJumpToBottom).toBe(true) + }) }) diff --git a/src-ui/src/app/components/admin/logs/logs.component.ts b/src-ui/src/app/components/admin/logs/logs.component.ts index 68b88265d..e186b27b0 100644 --- a/src-ui/src/app/components/admin/logs/logs.component.ts +++ b/src-ui/src/app/components/admin/logs/logs.component.ts @@ -1,11 +1,8 @@ -import { - CdkVirtualScrollViewport, - ScrollingModule, -} from '@angular/cdk/scrolling' import { CommonModule } from '@angular/common' import { ChangeDetectorRef, Component, + ElementRef, OnDestroy, OnInit, ViewChild, @@ -28,8 +25,6 @@ import { LoadingComponentWithPermissions } from '../../loading-component/loading CommonModule, FormsModule, ReactiveFormsModule, - CdkVirtualScrollViewport, - ScrollingModule, ], }) export class LogsComponent @@ -49,9 +44,11 @@ export class LogsComponent public limit: number = 5000 + public showJumpToBottom = false + private readonly limitChange$ = new Subject() - @ViewChild('logContainer') logContainer: CdkVirtualScrollViewport + @ViewChild('logContainer') logContainer: ElementRef ngOnInit(): void { this.limitChange$ @@ -89,6 +86,7 @@ export class LogsComponent reloadLogs() { this.loading = true + const shouldStickToBottom = this.isNearBottom() this.logService .get(this.activeLog, this.limit) .pipe(takeUntil(this.unsubscribeNotifier)) @@ -108,7 +106,10 @@ export class LogsComponent }) if (hasChanges) { this.logs = parsed - this.scrollToBottom() + if (shouldStickToBottom) { + this.scrollToBottom() + } + this.showJumpToBottom = !shouldStickToBottom } }, error: () => { @@ -142,9 +143,25 @@ export class LogsComponent } scrollToBottom(): void { - this.changedetectorRef.detectChanges() - if (this.logContainer) { - this.logContainer.scrollToIndex(this.logs.length - 1) + const viewport = this.logContainer?.nativeElement + if (!viewport) { + return } + this.changedetectorRef.detectChanges() + viewport.scrollTop = viewport.scrollHeight + this.showJumpToBottom = false + } + + private isNearBottom(): boolean { + if (!this.logContainer?.nativeElement) return true + const distanceFromBottom = + this.logContainer.nativeElement.scrollHeight - + this.logContainer.nativeElement.scrollTop - + this.logContainer.nativeElement.clientHeight + return distanceFromBottom <= 40 + } + + onScroll(): void { + this.showJumpToBottom = !this.isNearBottom() } } From f7da273ab740c20d5361dcfa54d371482482fdb3 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 23:54:02 +0000 Subject: [PATCH 108/133] Auto translate strings --- src-ui/messages.xlf | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 273393b46..428420a0c 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -713,7 +713,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -812,6 +812,13 @@ 28
+ + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. From 5036aa1ea31246c2ceca3498e0c300aad8eff649 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Fri, 21 Nov 2025 18:08:47 -0800 Subject: [PATCH 109/133] Feature: Upgrade underlying Docker image to Trixie (#10562) --- .devcontainer/Dockerfile | 28 ++-------------------------- Dockerfile | 22 ++++------------------ 2 files changed, 6 insertions(+), 44 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index fd6448e9b..ba7b192d3 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM --platform=$BUILDPLATFORM docker.io/node:20-bookworm-slim as main-app +FROM --platform=$BUILDPLATFORM docker.io/node:20-trixie-slim as main-app ARG DEBIAN_FRONTEND=noninteractive @@ -9,8 +9,6 @@ ARG TARGETARCH # Can be workflow provided, defaults set for manual building ARG JBIG2ENC_VERSION=0.29 -ARG QPDF_VERSION=11.9.0 -ARG GS_VERSION=10.03.1 # Set Python environment variables ENV PYTHONDONTWRITEBYTECODE=1 \ @@ -88,32 +86,10 @@ COPY --from=ghcr.io/astral-sh/uv:0.7.8 /uv /bin/uv RUN set -eux \ && echo "Installing pre-built updates" \ - && echo "Installing qpdf ${QPDF_VERSION}" \ - && curl --fail --silent --show-error --location \ - --output libqpdf29_${QPDF_VERSION}-1_${TARGETARCH}.deb \ - https://github.com/paperless-ngx/builder/releases/download/qpdf-${QPDF_VERSION}/libqpdf29_${QPDF_VERSION}-1_${TARGETARCH}.deb \ - && curl --fail --silent --show-error --location \ - --output qpdf_${QPDF_VERSION}-1_${TARGETARCH}.deb \ - https://github.com/paperless-ngx/builder/releases/download/qpdf-${QPDF_VERSION}/qpdf_${QPDF_VERSION}-1_${TARGETARCH}.deb \ - && dpkg --install ./libqpdf29_${QPDF_VERSION}-1_${TARGETARCH}.deb \ - && dpkg --install ./qpdf_${QPDF_VERSION}-1_${TARGETARCH}.deb \ - && echo "Installing Ghostscript ${GS_VERSION}" \ - && curl --fail --silent --show-error --location \ - --output libgs10_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ - https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/libgs10_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ - && curl --fail --silent --show-error --location \ - --output ghostscript_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ - https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/ghostscript_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ - && curl --fail --silent --show-error --location \ - --output libgs10-common_${GS_VERSION}.dfsg-1_all.deb \ - https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/libgs10-common_${GS_VERSION}.dfsg-1_all.deb \ - && dpkg --install ./libgs10-common_${GS_VERSION}.dfsg-1_all.deb \ - && dpkg --install ./libgs10_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ - && dpkg --install ./ghostscript_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ && echo "Installing jbig2enc" \ && curl --fail --silent --show-error --location \ --output jbig2enc_${JBIG2ENC_VERSION}-1_${TARGETARCH}.deb \ - https://github.com/paperless-ngx/builder/releases/download/jbig2enc-${JBIG2ENC_VERSION}/jbig2enc_${JBIG2ENC_VERSION}-1_${TARGETARCH}.deb \ + https://github.com/paperless-ngx/builder/releases/download/jbig2enc-trixie-v${JBIG2ENC_VERSION}/jbig2enc_${JBIG2ENC_VERSION}-1_${TARGETARCH}.deb \ && dpkg --install ./jbig2enc_${JBIG2ENC_VERSION}-1_${TARGETARCH}.deb # setup docker-specific things diff --git a/Dockerfile b/Dockerfile index 61c6a63a2..6cedb9ba4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # Purpose: Compiles the frontend # Notes: # - Does PNPM stuff with Typescript and such -FROM --platform=$BUILDPLATFORM docker.io/node:20-bookworm-slim AS compile-frontend +FROM --platform=$BUILDPLATFORM docker.io/node:20-trixie-slim AS compile-frontend COPY ./src-ui /src/src-ui @@ -32,7 +32,7 @@ RUN set -eux \ # Purpose: Installs s6-overlay and rootfs # Comments: # - Don't leave anything extra in here either -FROM ghcr.io/astral-sh/uv:0.9.10-python3.12-bookworm-slim AS s6-overlay-base +FROM ghcr.io/astral-sh/uv:0.9.10-python3.12-trixie-slim AS s6-overlay-base WORKDIR /usr/src/s6 @@ -102,8 +102,6 @@ ARG TARGETARCH # Can be workflow provided, defaults set for manual building ARG JBIG2ENC_VERSION=0.30 -ARG QPDF_VERSION=11.9.0 -ARG GS_VERSION=10.03.1 # Set Python environment variables ENV PYTHONDONTWRITEBYTECODE=1 \ @@ -170,20 +168,8 @@ RUN set -eux \ && apt-get update \ && apt-get install --yes --quiet --no-install-recommends ${RUNTIME_PACKAGES} \ && echo "Installing pre-built updates" \ - && curl --fail --silent --no-progress-meter --show-error --location --remote-name-all --parallel --parallel-max 4 \ - https://github.com/paperless-ngx/builder/releases/download/qpdf-${QPDF_VERSION}/libqpdf29_${QPDF_VERSION}-1_${TARGETARCH}.deb \ - https://github.com/paperless-ngx/builder/releases/download/qpdf-${QPDF_VERSION}/qpdf_${QPDF_VERSION}-1_${TARGETARCH}.deb \ - https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/libgs10_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ - https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/ghostscript_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ - https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/libgs10-common_${GS_VERSION}.dfsg-1_all.deb \ - https://github.com/paperless-ngx/builder/releases/download/jbig2enc-${JBIG2ENC_VERSION}/jbig2enc_${JBIG2ENC_VERSION}-1_${TARGETARCH}.deb \ - && echo "Installing qpdf ${QPDF_VERSION}" \ - && dpkg --install ./libqpdf29_${QPDF_VERSION}-1_${TARGETARCH}.deb \ - && dpkg --install ./qpdf_${QPDF_VERSION}-1_${TARGETARCH}.deb \ - && echo "Installing Ghostscript ${GS_VERSION}" \ - && dpkg --install ./libgs10-common_${GS_VERSION}.dfsg-1_all.deb \ - && dpkg --install ./libgs10_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ - && dpkg --install ./ghostscript_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ + && curl --fail --silent --no-progress-meter --show-error --location --remote-name-all \ + https://github.com/paperless-ngx/builder/releases/download/jbig2enc-trixie-v${JBIG2ENC_VERSION}/jbig2enc_${JBIG2ENC_VERSION}-1_${TARGETARCH}.deb \ && echo "Installing jbig2enc" \ && dpkg --install ./jbig2enc_${JBIG2ENC_VERSION}-1_${TARGETARCH}.deb \ && echo "Configuring imagemagick" \ From 85a2a0a4167ecf3d8fdd421e0bf34656b0743d08 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 22 Nov 2025 17:45:22 +0000 Subject: [PATCH 110/133] New Crowdin translations by GitHub Action (#11399) --- src-ui/src/locale/messages.af_ZA.xlf | 204 ++++--- src-ui/src/locale/messages.ar_AR.xlf | 204 ++++--- src-ui/src/locale/messages.be_BY.xlf | 204 ++++--- src-ui/src/locale/messages.bg_BG.xlf | 204 ++++--- src-ui/src/locale/messages.ca_ES.xlf | 204 ++++--- src-ui/src/locale/messages.cs_CZ.xlf | 204 ++++--- src-ui/src/locale/messages.da_DK.xlf | 204 ++++--- src-ui/src/locale/messages.de_DE.xlf | 208 ++++--- src-ui/src/locale/messages.el_GR.xlf | 204 ++++--- src-ui/src/locale/messages.es_ES.xlf | 204 ++++--- src-ui/src/locale/messages.et_EE.xlf | 204 ++++--- src-ui/src/locale/messages.fa_IR.xlf | 204 ++++--- src-ui/src/locale/messages.fi_FI.xlf | 204 ++++--- src-ui/src/locale/messages.fr_FR.xlf | 204 ++++--- src-ui/src/locale/messages.he_IL.xlf | 204 ++++--- src-ui/src/locale/messages.hr_HR.xlf | 204 ++++--- src-ui/src/locale/messages.hu_HU.xlf | 204 ++++--- src-ui/src/locale/messages.id_ID.xlf | 204 ++++--- src-ui/src/locale/messages.it_IT.xlf | 204 ++++--- src-ui/src/locale/messages.ja_JP.xlf | 204 ++++--- src-ui/src/locale/messages.ko_KR.xlf | 204 ++++--- src-ui/src/locale/messages.lb_LU.xlf | 204 ++++--- src-ui/src/locale/messages.lt_LT.xlf | 204 ++++--- src-ui/src/locale/messages.lv_LV.xlf | 204 ++++--- src-ui/src/locale/messages.mk_MK.xlf | 204 ++++--- src-ui/src/locale/messages.ms_MY.xlf | 204 ++++--- src-ui/src/locale/messages.nl_NL.xlf | 204 ++++--- src-ui/src/locale/messages.no_NO.xlf | 204 ++++--- src-ui/src/locale/messages.pl_PL.xlf | 204 ++++--- src-ui/src/locale/messages.pt_BR.xlf | 204 ++++--- src-ui/src/locale/messages.pt_PT.xlf | 204 ++++--- src-ui/src/locale/messages.ro_RO.xlf | 204 ++++--- src-ui/src/locale/messages.ru_RU.xlf | 204 ++++--- src-ui/src/locale/messages.sk_SK.xlf | 204 ++++--- src-ui/src/locale/messages.sl_SI.xlf | 204 ++++--- src-ui/src/locale/messages.sr_CS.xlf | 204 ++++--- src-ui/src/locale/messages.sv_SE.xlf | 204 ++++--- src-ui/src/locale/messages.th_TH.xlf | 204 ++++--- src-ui/src/locale/messages.tr_TR.xlf | 753 +++++++++++++------------ src-ui/src/locale/messages.uk_UA.xlf | 204 ++++--- src-ui/src/locale/messages.vi_VN.xlf | 208 ++++--- src-ui/src/locale/messages.zh_CN.xlf | 204 ++++--- src-ui/src/locale/messages.zh_TW.xlf | 214 ++++--- src/locale/ar_AR/LC_MESSAGES/django.po | 10 +- src/locale/ca_ES/LC_MESSAGES/django.po | 2 +- src/locale/de_DE/LC_MESSAGES/django.po | 12 +- src/locale/tr_TR/LC_MESSAGES/django.po | 34 +- src/locale/zh_TW/LC_MESSAGES/django.po | 2 +- 48 files changed, 5473 insertions(+), 3926 deletions(-) diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf index 0bc9fced5..0e4195481 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Sluit @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Vorige @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Volgende @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Vorige maand @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Volgende maand @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sluit @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Kies maand @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Uur @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Kies jaar @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minute @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Eerste @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Vermeerder ure @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Vorige @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Verminder ure @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Volgende @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Vermeerder minute @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Laaste @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Verminder minute @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekondes @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Vermeerder sekondes @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Verminder sekondes @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Laai tans… + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Gevorderde soektog @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - nou - From @@ -3882,11 +3878,19 @@ Toegevoeg + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + nou + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nie toegewys nie @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Titel & inhoud @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Meer soos @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 gelyk aan @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 is leeg @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 is nie leeg nie @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 groter as @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 kleiner as @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Sonder korrespondent @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Sonder dokumenttipe @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Without storage path @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Sonder enige etiket @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Titel: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Eienaar: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Eienaar nie in: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Sonder ’n eienaar diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index 83620d77a..7aa6ba72d 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 إغلاق @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 السابق @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 التالي @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 الشهر السابق @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 الشهر التالي @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 إغلاق @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 تحديد الشهر @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ساعات @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 اختر السنة @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 دقائق @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 الأول @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 زيادة الساعات @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 السابق @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 إنقاص الساعات @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 التالي @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 زيادة الدقائق @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 الأخير @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 إنقاص الدقائق @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ثوانٍ @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 زيادة الثواني @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 إنقاص الثواني @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ تحميل... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 بحث متقدم @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - الآن - From @@ -3882,11 +3878,19 @@ أضيف + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + الآن + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned غير معين @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 فتح المرشح @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 حقول مخصصة @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 العنوان & المحتوى @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 أكثر مثله @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 يساوي @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 فارغ @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 غير فارغ @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 أكبر من @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 أقل من @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 بدون مراسل @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 بدون نوع المستند @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 بدون مسار التخزين @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 بلا أي وسم @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 طلب الحقول المخصصة @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 العنوان: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 المالك: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 المالك ليس في: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 بدون مالك diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index 21638825e..43609cfca 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Закрыць @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Папярэдняя @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Наступная @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Папярэдні месяц @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Наступны месяц @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Закрыць @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Абраць месяц @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Гадзіны @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Абраць год @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Хвіліны @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Першы @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Прыбавіць гадзіну @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Папярэдняя @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Адняць гадзіну @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Наступная @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Прыбавіць хвіліну @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 На апошнюю @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Адняць хвіліну @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Секунды @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Прыбавіць секунду @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Адняць секунду @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Загрузка... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Пашыраны пошук @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - now - From @@ -3882,11 +3878,19 @@ Дададзена + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + now + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Не прызначана @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Назва & змест @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Больш падобных @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 супадае з @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 пусты @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 не пусты @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 большы за @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 менш за @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Без карэспандэнта @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Без тыпу дакумента @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Without storage path @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Без усялякага тэга @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Назва: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Owner: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Owner not in: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Without an owner diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf index 94ce051ab..039ae4934 100644 --- a/src-ui/src/locale/messages.bg_BG.xlf +++ b/src-ui/src/locale/messages.bg_BG.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Затвори @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Назад @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Напред @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Предишен месец @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Следващ месец @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Затвори @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Изберете месец @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Часове @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ММ @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Изберете година @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Минути @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Първи @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Увеличете часове @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Предишен @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Намалете часовете @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Напред @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Увеличете минутите @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Последен @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Намалете минутите @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Секунди @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Увеличете секундите @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Намалете секундите @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Зареждане... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Подробно търсене @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Относителни дати - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - сега - From @@ -3882,11 +3878,19 @@ Добавен + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + сега + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 В рамките на 1 седмица @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 В рамките на 1 месец @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 В рамките на 3 месеца @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 В рамките на 1 година @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Тази година @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Този месец @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Вчера + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Не е зададен @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Отвори филтър @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Персонализирани полета @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Заглавие & съдържание @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Тип файл @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Още като @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 е равно на @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 е празно @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 не е празно @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 по-голямо от @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 по-малко от @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Кореспондент: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Без кореспондент @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Тип документ: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Без тип на документа @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Път за съхранение: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Без път за съхранение @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Етикет: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Без никакъв етикет @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Заявка за персонализирани полета @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Заглавие: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 Архивен номер: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Собственик: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Собственикът не е в: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Без собственик diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index 492ecc9b7..3f527999d 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Tanca @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Anterior @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Següent @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Mes anterior @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Mes següent @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Tanca @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Seleccioneu mes @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Hores @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Seleccioneu un any @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minuts @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Primer @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrementa hores @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Anterior @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Disminuir hores @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Següent @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrementar minuts @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Últim @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Disminuir minuts @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Segons @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrementar segons @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Disminuir segons @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Carregant... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Cerca avançada @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Dates relatives - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - ara - From @@ -3882,11 +3878,19 @@ Afegit + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + ara + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 En 1 setmana @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 En 1 mes @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 En 3 mesos @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 En 1 any @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Aquest any @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Aquest mes @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Ahir + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Setmana anterior + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Mes anterior + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Quatrimestre Ant + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Any passat + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned No assignat @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Obrir filtre @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Camps personalitzats @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Títol i contingut @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Tipus de fitxer @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Més com @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 és igual a @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 està buit @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 no està buit @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 més gran que @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 més petit que @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Corresponsal: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Sense corresponsal @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Tipus Document: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Sense tipus de document @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Ruta Emmagazematge: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Sense ruta emmagatzematge @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Etiqueta: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Sense cap etiqueta @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Consulta de camps personalitzats @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Títol: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Propietari: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Propietari no és: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Sense propietari diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index d47817703..d97b2b1ff 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Zavřít @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Předchozí @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Následující @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Předchozí měsíc @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Následující měsíc @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zavřít @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Vybrat měsíc @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Hodin @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Vybrat rok @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minuty @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 První @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zvýšení počtu hodin @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Předchozí @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Snížení počtu hodin @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Následující @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zvýšení počtu minut @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Poslední @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Snížení počtu minut @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekundy @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zvýšení počtu sekund @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Snížení počtu sekund @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Načítání... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Pokročilé vyhledávání @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relativní datum - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - nyní - From @@ -3882,11 +3878,19 @@ Přidáno + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + nyní + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Během 1 týdne @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Během 1 měsíce @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Během 3 měsíců @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Během 1 roku @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Tento rok @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Tento měsíc @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Včera + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nepřiřazeno @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Otevřít filtr @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Vlastní pole @@ -8817,7 +8853,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9037,7 +9073,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Název a obsah @@ -9045,7 +9081,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Typ souboru @@ -9053,7 +9089,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Podobné @@ -9061,7 +9097,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 rovná se @@ -9069,7 +9105,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 je prázdný @@ -9077,7 +9113,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 není prázdný @@ -9085,7 +9121,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 větší než @@ -9093,7 +9129,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 menší než @@ -9101,7 +9137,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Korespondent: @@ -9109,7 +9145,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Bez korespondenta @@ -9117,7 +9153,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Typ dokumentu: @@ -9125,7 +9161,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Bez typu dokumentu @@ -9133,7 +9169,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Cesta k úložišti: @@ -9141,7 +9177,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Bez cesty k úložišti @@ -9149,7 +9185,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Štítek: @@ -9157,7 +9193,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Bez štítku @@ -9165,7 +9201,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Dotaz na vlastní pole @@ -9173,7 +9209,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Název: @@ -9181,7 +9217,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 SČA: @@ -9189,7 +9225,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Vlastník: @@ -9197,7 +9233,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Vlastník není v: @@ -9205,7 +9241,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Bez vlastníka diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index ced3c51a0..6fa7f7bdd 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Luk @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Forrige @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Næste @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Forrige måned @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Næste måned @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Luk @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Vælg måned @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Timer @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Vælg år @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minutter @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Første @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Forøg timer @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Forrige @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Reducer timer @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Næste @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Forøg minutter @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sidste @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Reducer minutter @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekunder @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Forøg sekunder @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Reducer sekunder @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Indlæser... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Avanceret søgning @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - now - From @@ -3882,11 +3878,19 @@ Tilføjet + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + now + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Ikke tildelt @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Titel & indhold @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Mere som @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 equals @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 is empty @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 is not empty @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 greater than @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 less than @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Uden korrespondent @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Uden dokumenttype @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Without storage path @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Uden nogen etiket @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Titel: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Owner: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Owner not in: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Without an owner diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index a43edd5d3..323e4c6c6 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Schließen @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Vorherige @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Nächste @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Vorheriger Monat @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Nächster Monat @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Schließen @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Monat auswählen @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Stunden @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Jahr auswählen @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minuten @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Erste @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Stunden erhöhen @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Vorherige @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Stunden verringern @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Nächste @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minuten erhöhen @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Letzte @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minuten verringern @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekunden @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekunden erhöhen @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekunden verringern @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Wird geladen... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Nach unten + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Erweiterte Suche @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative Datumsangaben - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - jetzt - From @@ -3882,11 +3878,19 @@ Hinzugefügt am + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + jetzt + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Innerhalb einer Woche @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Innerhalb eines Monats @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Innerhalb von 3 Monaten @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Innerhalb eines Jahres @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Aktuelles Jahr @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Aktueller Monat @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Gestern + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Vorherige Woche + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Vorheriger Monat + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Vorheriges Quartal + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Vorheriges Jahr + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nicht zugewiesen @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Filter öffnen @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Benutzerdefinierte Felder @@ -8715,7 +8751,7 @@ src/app/data/matching-model.ts 45 - Keiner + Keine Sort @@ -8817,7 +8853,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9037,7 +9073,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Titel & Inhalt @@ -9045,7 +9081,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Dateityp @@ -9053,7 +9089,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Ähnlich zu @@ -9061,7 +9097,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 entspricht @@ -9069,7 +9105,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 ist leer @@ -9077,7 +9113,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 ist nicht leer @@ -9085,7 +9121,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 größer als @@ -9093,7 +9129,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 kleiner als @@ -9101,7 +9137,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Korrespondent: @@ -9109,7 +9145,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Ohne Korrespondent @@ -9117,7 +9153,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Dokumenttyp: @@ -9125,7 +9161,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Ohne Dokumenttyp @@ -9133,7 +9169,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Speicherpfad: @@ -9141,7 +9177,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Ohne Speicherpfad @@ -9149,7 +9185,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9157,7 +9193,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Ohne Tag @@ -9165,7 +9201,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Benutzerdefinierte Feldabfrage @@ -9173,7 +9209,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Titel: @@ -9181,7 +9217,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9189,7 +9225,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Eigentümer: @@ -9197,7 +9233,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Eigentümer nicht in: @@ -9205,7 +9241,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Ohne Eigentümer @@ -10504,7 +10540,7 @@ src/app/data/matching-model.ts 46 - Keine: Automatische Zuweisung deaktivieren + Keiner: Automatische Zuweisung deaktivieren General Settings diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf index 36e3737d9..1dda7e456 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Κλείσιμο @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Προηγούμενο @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Επόμενο @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Προηγούμενος μήνας @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Επόμενος μήνας @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Κλείσιμο @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Επιλογή μήνα @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Ώρες @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ΜΜ @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Επιλογή έτους @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Λεπτά @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Πρώτο @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Προσαύξηση ωρών @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Προηγούμενο @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Μείωση ωρών @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Επόμενο @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Προσαύξηση λεπτών @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Τελευταίο @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Μείωση λεπτών @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Δευτερόλεπτα @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Προσαύξηση δευτερολέπτων @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Μείωση δευτερολέπτων @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Φόρτωση... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Σύνθετη αναζήτηση @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - τώρα - From @@ -3882,11 +3878,19 @@ Προστέθηκε + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + τώρα + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Δεν έχει ανατεθεί @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Τίτλος & περιεχόμενο @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Περισσότερα σαν @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 ίσον @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 είναι κενό @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 δεν είναι κενό @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 μεγαλύτερο από @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 μικρότερο από @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Χωρίς ανταποκριτή @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Χωρίς τύπο εγγράφου @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Χωρίς διαδρομή αποθήκευσης @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Χωρίς καμία ετικέτα @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Τίτλος: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Ιδιοκτήτης: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Ιδιοκτήτης όχι σε: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Χωρίς ιδιοκτήτη diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index e0d4e07b9..c7d572970 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Cerrar @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Anterior @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Siguiente @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Mes anterior @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Mes siguiente @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Cerrar @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Seleccionar mes @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Horas @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Seleccionar año @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minutos @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Primero @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrementar horas @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Anterior @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Disminuir horas @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Siguiente @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrementar minutos @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Último @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Disminuir minutos @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Segundos @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrementar segundos @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Disminuir segundos @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Cargando... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Búsqueda avanzada @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Fechas relativas - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - ahora - From @@ -3882,11 +3878,19 @@ Agregado + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + ahora + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 En 1 semana @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 En 1 mes @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 En 3 meses @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 En 1 año @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Este año @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Este mes @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Ayer + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Sin asignar @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Abrir filtro @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Campos personalizados @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Titulo y contenido @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Tipo archivo @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Más parecido @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 es igual a @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 está vacío @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 no está vacío @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 es mayor que @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 es menor que @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Sin interlocutor @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Sin tipo de documento @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Sin ruta de almacenamiento @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Sin ninguna etiqueta @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Consulta de campos personalizados @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Título: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 NSA: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Propietario: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Propietario no en: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Sin un propietario diff --git a/src-ui/src/locale/messages.et_EE.xlf b/src-ui/src/locale/messages.et_EE.xlf index 498a30ef2..877fde361 100644 --- a/src-ui/src/locale/messages.et_EE.xlf +++ b/src-ui/src/locale/messages.et_EE.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Close @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Previous @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Next @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Previous month @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Next month @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Close @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Select month @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Hours @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Select year @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minutes @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 First @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Increment hours @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Previous @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrement hours @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Next @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Increment minutes @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Last @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrement minutes @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Seconds @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Increment seconds @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrement seconds @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Loading... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Advanced search @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - now - From @@ -3882,11 +3878,19 @@ Added + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + now + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Not assigned @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Title & content @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 More like @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 equals @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 is empty @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 is not empty @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 greater than @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 less than @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Without correspondent @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Without document type @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Without storage path @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Without any tag @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Title: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Owner: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Owner not in: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Without an owner diff --git a/src-ui/src/locale/messages.fa_IR.xlf b/src-ui/src/locale/messages.fa_IR.xlf index 8e8361bfa..517d89ab1 100644 --- a/src-ui/src/locale/messages.fa_IR.xlf +++ b/src-ui/src/locale/messages.fa_IR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 نزدیک @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 قبلی @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 طرف دیگر @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 ماه قبل @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 ماه بعد @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 نزدیک @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ماه را انتخاب کنید @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ساعت @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 " @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 مگنی @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 سال را انتخاب کنید @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 دقایقی @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 اولی @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ساعات افزایشی @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 قبلی @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ساعات کاهش @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 طرف دیگر @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 چند دقیقه افزایشی @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 آخرین @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 دقیقه کاهش @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ثانیه @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ثانیه های افزایشی @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ثانیه کاهش @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ بارگیری ... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 جستجوی پیشرفته @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ خرمای نسبی - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - در حال حاضر - From @@ -3882,11 +3878,19 @@ اضافه شده + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + در حال حاضر + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 ظرف 1 هفته @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 طی 1 ماه @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 ظرف 3 ماه @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 ظرف 1 سال @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 امسال @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 این ماه @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ دیروز + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned اختصاص داده نشده است @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 زمینه های سفارشی @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Title & content @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 نوع پرونده @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 بیشتر شبیه @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 برابر است @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 خالی است @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 خالی نیست @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 بزرگتر از @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 کمتر از @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 بدون خبرنگار @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 بدون نوع سند @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 بدون مسیر ذخیره سازی @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 بدون هیچ برچسب @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 پرس و جو زمینه های سفارشی @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Title: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Owner: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Owner not in: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 بدون مالک diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index 0cf0b9de4..035ea7722 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Sulje @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Edellinen @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Seuraava @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Edellinen kuukausi @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Seuraava kuukausi @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sulje @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Valitse kuukausi @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Tuntia @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Valitse vuosi @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minuuttia @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Ensimmäinen @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Lisää tunteja @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Edellinen @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Pienennä tunteja @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Seuraava @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Lisää minuutteja @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Viimeinen @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Pienennä minuutteja @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekuntia @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Lisäys sekunteina @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Vähennys sekunteina @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Ladataan... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Laajennettu haku @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - nyt - From @@ -3882,11 +3878,19 @@ Lisätty + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + nyt + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Eilen + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Ei määritetty @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Mukautetut kentät @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Otsikko & sisältö @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Tiedostotyyppi @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Enemmän kuin @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 on yhtä kuin @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 on tyhjä @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 ei ole tyhjä @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 suurempi kuin @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 pienempi kuin @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Ilman kirjeenvaihtajaa @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Ilman asiakirjatyyppiä @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Without storage path @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Ilman tunnistetta @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Otsikko: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Omistaja: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Owner not in: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Without an owner diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 93b0d4b96..9d13c5193 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Fermer @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Précédent @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Suivant @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Mois précédent @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Mois suivant @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Fermer @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sélectionner le mois @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Heures @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sélectionner l'année @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minutes @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Premier @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrémenter les heures @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Précédent @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Décrémenter les heures @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Suivant @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrémenter les minutes @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Dernier @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Décrémenter les minutes @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Secondes @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrémenter les secondes @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Décrémenter les secondes @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Chargement... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Recherche avancée @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Dates relatives - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - maintenant - From @@ -3882,11 +3878,19 @@ Date d'ajout + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + maintenant + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Dans un délai de 1 semaine @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Dans un délai de 1 mois @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Dans un délai de 3 mois @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Dans un délai de 1 an @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Cette année @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Ce mois-ci @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Hier + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Non affecté @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Ouvrir le filtre @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Champs personnalisés @@ -8817,7 +8853,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9037,7 +9073,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Titre & contenu @@ -9045,7 +9081,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Type de fichier @@ -9053,7 +9089,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Plus comme @@ -9061,7 +9097,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 est égal à @@ -9069,7 +9105,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 est vide @@ -9077,7 +9113,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 n'est pas vide @@ -9085,7 +9121,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 est supérieur à @@ -9093,7 +9129,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 est inférieur à @@ -9101,7 +9137,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondant : @@ -9109,7 +9145,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Sans correspondant @@ -9117,7 +9153,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Type de document : @@ -9125,7 +9161,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Sans type de document @@ -9133,7 +9169,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Chemin de stockage : @@ -9141,7 +9177,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Sans chemin de stockage @@ -9149,7 +9185,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Étiquette : @@ -9157,7 +9193,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Sans étiquette @@ -9165,7 +9201,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Champs personnalisés de requête @@ -9173,7 +9209,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Titre : @@ -9181,7 +9217,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 NSA : @@ -9189,7 +9225,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Propriétaire : @@ -9197,7 +9233,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Propriétaire non présent dans : @@ -9205,7 +9241,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Sans propriétaire diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index feba8cfbe..5cb285e33 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 סגור @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 הקודם @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 הבא @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 חודש קודם @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 חודש הבא @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 שש @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 סגירה @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 בחירת חודש @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 שעות @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 חח @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 בחר שנה @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 דקות @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ראשון @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 הגדלת שעות @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 קודם @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 הקטנת שעות @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 הבא @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 הגדלת דקות @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 אחרון @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 הקטנת דקות @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 שש @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 שניות @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 הגדלת שניות @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 הקטנת שניות @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ טוען... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 חיפוש מתקדם @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ תאריכים יחסיים - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - עכשיו - From @@ -3882,11 +3878,19 @@ נוסף + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + עכשיו + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 בתוך שבוע אחד @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 בתוך חודש אחד @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 בתוך שלושה חודשים @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 בתוך שנה אחת @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 השנה הזאת @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 החודש הזה @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ אתמול + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned לא הוקצה @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 פתחו מסנן @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 שדות מותאמים אישית @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 כותרת & תוכן @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 סוג קובץ @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 עוד כמו @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 שווה @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 הינו ריק @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 אינו ריק @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 גדול מ @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 קטן מ @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 שולח: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 ללא מכותבים @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 סוג מסמך: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 ללא סוג מסמך @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 ללא נתיב אחסון @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 ללא תיוג @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 שאילתת שדות מותאמים אישית @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 כותרת: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 מס"ד: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 בעלים: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 הבעלים לא נכלל בתוך: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 ללא בעלים diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index f5329341e..beb9b3b1d 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Zatvori @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Prethodno @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Sljedeće @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Prethodni mjesec @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Sljedeći mjesec @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zatvori @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Odaberi mjesec @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sati @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Odaberi godinu @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minute @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Prvi @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Povećanje sati @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Prethodni @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Smanjenje sati @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sljedeći @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Povečanje minuta @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zadnji @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Smanjenje minuta @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekunde @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Povečanje sekundi @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Smanjenje sekundi @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Učitavanje... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Advanced search @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - sada - From @@ -3882,11 +3878,19 @@ Added + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + sada + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nije dodijeljen @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Title & content @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 More like @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 equals @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 is empty @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 is not empty @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 greater than @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 less than @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Without correspondent @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Without document type @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Without storage path @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Without any tag @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Title: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Owner: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Owner not in: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Without an owner diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index 11a7663af..dd8e35c97 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Bezár @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Előző @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Következő @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Előző hónap @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 A következő hónapban @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Bezár @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Válassza ki a hónapot @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 "" @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Órák @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 " @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 " @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Év kiválasztása @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Percek @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 "" @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Első @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Növekvő órák @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Előző @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Órák csökkentése @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Következő @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Növekvő percek @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Last @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Percek csökkentése @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Másodpercek @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Növekvő másodpercek @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Másodpercek csökkentése @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Betöltés... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Speciális keresés @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relatív dátumok - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - most - From @@ -3882,11 +3878,19 @@ Hozzáadva + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + most + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Egy héten belül @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Egy hónapon belül @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Három hónapon belül @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Egy éven belül @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Idén @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Ebben a hónapban @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Tegnap + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nincs hozzárendelve @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 filter megnyitása @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Egyéni mezők @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Cím & tartalom @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Fájltípus @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Bővebben @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 egyenlő @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 üres @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 nem üres @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 nagyobb, mint @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 kevesebb, mint @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Levelezőpartner: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Kapcsolattartó nélkül @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Dokumentumtípus: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Dokumentumtípus nélkül @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Tárolási útvonal: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Tárolási útvonal nélkül @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Címke: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Címke nélkül @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Egyéni mező lekérdezés @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Cím: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Tulajdonos: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 A tulajdonos nincs: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Tulajdonos nélkül diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf index ba1a70a96..20dcf6f5a 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Tutup @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Sebelumnya @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Selanjutnya @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Bulan sebelumnya @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Bulan depan @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Tutup @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Pilih bulan @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Jam @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Pilih tahun @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Menit @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Pertama @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Penambahan jam @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sebelumnya @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Pengurangan jam @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Selanjutnya @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Penambahan menit @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Terahkir @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Pengurangan menit @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Detik @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Penambahan detik @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Pengurangan detik @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Memuat... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Pencarian lanjutan @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Tanggal relatif - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - sekarang - From @@ -3882,11 +3878,19 @@ Ditambahkan + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + sekarang + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Dalam 1 minggu @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Dalam 1 bulan @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Dalam 3 bulan @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Dalam 1 tahun @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Tahun ini @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Bulan ini @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Kemarin + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Tidak ditugaskan @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Buka saring @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Bidang khusus @@ -8817,7 +8853,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9037,7 +9073,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Title & content @@ -9045,7 +9081,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9053,7 +9089,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 More like @@ -9061,7 +9097,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 equals @@ -9069,7 +9105,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 kosong @@ -9077,7 +9113,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 tidak kosong @@ -9085,7 +9121,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 lebih besar dari @@ -9093,7 +9129,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 kurang dari @@ -9101,7 +9137,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9109,7 +9145,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Tanpa koresponden @@ -9117,7 +9153,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9125,7 +9161,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Tanpa tipe dokumen @@ -9133,7 +9169,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9141,7 +9177,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Tanpa lokasi penyimpanan @@ -9149,7 +9185,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9157,7 +9193,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Tanpa label apapun @@ -9165,7 +9201,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9173,7 +9209,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Title: @@ -9181,7 +9217,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9189,7 +9225,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Owner: @@ -9197,7 +9233,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Owner not in: @@ -9205,7 +9241,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Tanpa pemilik diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index c79e07224..9f6b7e222 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Chiudi @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Precedente @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Successivo @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Mese precedente @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Il prossimo mese @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Chiudi @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Seleziona il mese @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Ore @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Seleziona anno @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minuti @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Primo @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrementa ore @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Precedente @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrementa ore @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Successivo @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrementa minuti @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Ultimo @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrementa minuti @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Secondi @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incremento in secondi @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decremento in secondi @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Caricamento in corso... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Ricerca avanzata @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Date relative - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - adesso - From @@ -3882,11 +3878,19 @@ Aggiunto + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + adesso + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Entro una settimana @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Entro 1 mese @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Entro 3 mesi @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Entro 1 anno @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Quest'anno @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Questo mese @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Ieri + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Non assegnato @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Apri filtro @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Campi personalizzati @@ -8817,7 +8853,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9037,7 +9073,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Titolo & contenuto @@ -9045,7 +9081,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Tipo di file @@ -9053,7 +9089,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Più come @@ -9061,7 +9097,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 uguale a @@ -9069,7 +9105,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 è vuoto @@ -9077,7 +9113,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 non è vuoto @@ -9085,7 +9121,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 maggiore di @@ -9093,7 +9129,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 minore di @@ -9101,7 +9137,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Corrispondente: @@ -9109,7 +9145,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Senza corrispondente @@ -9117,7 +9153,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Tipo di documento: @@ -9125,7 +9161,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Senza tipo di documento @@ -9133,7 +9169,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Percorso di archiviazione: @@ -9141,7 +9177,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Senza percorso di archiviazione @@ -9149,7 +9185,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Etichetta: @@ -9157,7 +9193,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Senza alcun tag @@ -9165,7 +9201,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Query campi personalizzati @@ -9173,7 +9209,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Titolo: @@ -9181,7 +9217,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9189,7 +9225,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Proprietario: @@ -9197,7 +9233,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Proprietario non in: @@ -9205,7 +9241,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Senza proprietario diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf index c7f305d58..c2e5217c1 100644 --- a/src-ui/src/locale/messages.ja_JP.xlf +++ b/src-ui/src/locale/messages.ja_JP.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 閉じる @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 前へ @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 次へ @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 前月 @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 翌月 @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 閉じる @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 月を選択 @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 西暦を選択 @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 先頭ページ @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 時の増加 @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 前へ @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 時の減少 @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 次へ @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 分の増加 @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 最終ページ @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 分の減少 @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 秒の増加 @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 秒の減少 @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ 読み込み中... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 高度な検索 @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ 相対的な日付 - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - 現在 - From @@ -3882,11 +3878,19 @@ 追加日 + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + 現在 + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 1週間以内 @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 1か月間以内 @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 3か月間以内 @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 1年以内 @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 今年 @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 今月 @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ 昨日 + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned 未割り当て @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 フィルタを開く @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 カスタム項目 @@ -8817,7 +8853,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9037,7 +9073,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 タイトルと内容 @@ -9045,7 +9081,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 ファイル形式 @@ -9053,7 +9089,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 類似 @@ -9061,7 +9097,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 が次の値と等しい @@ -9069,7 +9105,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 が空である @@ -9077,7 +9113,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 が空でない @@ -9085,7 +9121,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 が次の値より大きい @@ -9093,7 +9129,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 が次の値より小さい @@ -9101,7 +9137,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 発信元: @@ -9109,7 +9145,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 発信元なし @@ -9117,7 +9153,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 ドキュメントタイプ: @@ -9125,7 +9161,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 ドキュメントタイプなし @@ -9133,7 +9169,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 ストレージパス: @@ -9141,7 +9177,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 フォルダーなし @@ -9149,7 +9185,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 タグ: @@ -9157,7 +9193,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 タグなし @@ -9165,7 +9201,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 カスタムフィールドのクエリ @@ -9173,7 +9209,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 タイトル: @@ -9181,7 +9217,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9189,7 +9225,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 所有者: @@ -9197,7 +9233,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 所有者がいない: @@ -9205,7 +9241,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 所有者なし diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf index 89df9bf93..552f9b69f 100644 --- a/src-ui/src/locale/messages.ko_KR.xlf +++ b/src-ui/src/locale/messages.ko_KR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 닫기 @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 이전 @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 다음 @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 지난달 @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 다음 달 @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 닫기 @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 월 선택 @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 시간 @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 연도 선택 @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 처음 @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 시간 증가 @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 이전 @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 감소 시간 @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 다음 @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 분 단위 증가 @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 마지막 @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 분 감소 @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 초 단위 증가 @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 초 단위로 감소 @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ 로딩 중... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 고급 검색 @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ 상대적 날짜 - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - 지금 - From @@ -3882,11 +3878,19 @@ 추가됨 + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + 지금 + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 1주일 이내 @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 1개월 이내 @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 3개월 이내 @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 1년 이내 @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 올해 @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 이번 달 @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ 어제 + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned 할당되지 않음 @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 "" 필터 열기 @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 사용자 정의 필드 @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 제목 & 자료 @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 파일 종류 @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 더 비슷한 @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 일치 @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 는(은) 비어 있습니다. @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 가 비어 있지 않습니다. @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 보다 큰 @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 미만 @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 담당자 없음 @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 문서 유형: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 문서 유형 없음 @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 저장 경로 없음 @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 어떤 태그도 없이 @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 사용자 정의 필드 쿼리 @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 제목: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 소유자: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 소유자가 다음에 없습니다: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 소유자 없음 diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index edb8c7a27..241e5dbbe 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Zoumaachen @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Zréck @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Weider @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Mount virdrun @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Nächste Mount @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zoumaachen @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Mount auswielen @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Stonnen @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Joer auswielen @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minutten @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Ufank @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Stonnen eropsetzen @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zréck @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Stonnen erofsetzen @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Weider @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minutten erhéijen @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Schluss @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minutten erofsetzen @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekonnen @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekonnen eropsetzen @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekonnen erofsetzen @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Lueden... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Erweidert Sich @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - elo - From @@ -3882,11 +3878,19 @@ Dobäigesat + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + elo + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Bannent 1 Woch @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Bannent 1 Mount @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Bannent 3 Méint @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Bannent 1 Joer @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Dëst Joer @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Dëse Mount @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Gëschter + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Net zougewisen @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Titel an Inhalt @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Méi ähnleches @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 ass gläich @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 ass eidel @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 ass net eidel @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 ass méi grouss ewéi @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 ass méi kleng ewéi @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Ouni Korrespondent @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Ouni Dokumententyp @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Without storage path @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Ouni Etikett @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Titel: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Owner: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Owner not in: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Without an owner diff --git a/src-ui/src/locale/messages.lt_LT.xlf b/src-ui/src/locale/messages.lt_LT.xlf index 62833f466..d2c20fe0a 100644 --- a/src-ui/src/locale/messages.lt_LT.xlf +++ b/src-ui/src/locale/messages.lt_LT.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Uždaryti @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Ankstesnis @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Kitas @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Ankstesnis mėnuo @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Kitas mėnuo @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Uždaryti @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Pasirinktas mėnuo @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Valandos @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Pasirinkti metus @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minutės @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Pirmas @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Padidinti valandas @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Ankstesnis @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sumažinti valandas @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Kitas @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Padidinti minutes @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Paskutinis @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sumažinti minutes @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekundės @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Padidinti sekundes @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sumažinti sekundes @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Įkeliama... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Advanced search @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - now - From @@ -3882,11 +3878,19 @@ Added + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + now + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Not assigned @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Title & content @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 More like @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 equals @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 is empty @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 is not empty @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 greater than @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 less than @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Without correspondent @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Without document type @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Without storage path @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Without any tag @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Title: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Owner: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Owner not in: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Without an owner diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf index ff9edccae..e823f4e09 100644 --- a/src-ui/src/locale/messages.lv_LV.xlf +++ b/src-ui/src/locale/messages.lv_LV.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Aizvērt @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Iepriekšējais @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Nākamais @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Iepriekšējais mēnesis @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Nākamais mēnesis @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Aizvērt @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Izvēlieties mēnesi @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Stundas @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Izvēlieties gadu @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minūtes @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Pirmā @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Palielināt stundas @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Iepriekšējā @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Samazināt stundas @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Nākamā @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Palielināt minūtes @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Pēdējā @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Samazināt minūtes @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekundes @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Palielināt sekundes @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Samazināt sekundes @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Ielāde... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Paplašinātā meklēšana @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - now - From @@ -3882,11 +3878,19 @@ Pievienots + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + now + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nav piešķirts @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Pielāgojami lauki @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Title & content @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 More like @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 equals @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 ir tukšs @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 is not empty @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 lielāks par @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 mazāk kā @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Without correspondent @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Without document type @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Without storage path @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Bez birkas @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Title: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Owner: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Owner not in: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Without an owner diff --git a/src-ui/src/locale/messages.mk_MK.xlf b/src-ui/src/locale/messages.mk_MK.xlf index ebaf7ae61..d128f32a5 100644 --- a/src-ui/src/locale/messages.mk_MK.xlf +++ b/src-ui/src/locale/messages.mk_MK.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Close @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Previous @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Next @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Previous month @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Next month @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Close @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Select month @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Hours @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Select year @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minutes @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 First @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Increment hours @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Previous @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrement hours @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Next @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Increment minutes @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Last @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrement minutes @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Seconds @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Increment seconds @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrement seconds @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Loading... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Advanced search @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - now - From @@ -3882,11 +3878,19 @@ Added + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + now + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Not assigned @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Title & content @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 More like @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 equals @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 is empty @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 is not empty @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 greater than @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 less than @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Without correspondent @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Without document type @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Without storage path @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Without any tag @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Title: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Owner: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Owner not in: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Without an owner diff --git a/src-ui/src/locale/messages.ms_MY.xlf b/src-ui/src/locale/messages.ms_MY.xlf index 753b335bd..ae975d822 100644 --- a/src-ui/src/locale/messages.ms_MY.xlf +++ b/src-ui/src/locale/messages.ms_MY.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Close @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Previous @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Next @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Previous month @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Next month @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Close @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Select month @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Hours @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Select year @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minutes @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 First @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Increment hours @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Previous @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrement hours @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Next @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Increment minutes @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Last @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrement minutes @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Seconds @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Increment seconds @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrement seconds @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Loading... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Advanced search @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - now - From @@ -3882,11 +3878,19 @@ Added + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + now + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Not assigned @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Title & content @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 More like @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 equals @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 is empty @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 is not empty @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 greater than @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 less than @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Without correspondent @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Without document type @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Without storage path @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Without any tag @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Title: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Owner: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Owner not in: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Without an owner diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index 4db95e43b..4311c0519 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Sluiten @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Vorige @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Volgende @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Vorige maand @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Volgende maand @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 UU @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sluiten @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Selecteer maand @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Uren @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Jaar selecteren @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minuten @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Eerste @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Uren verhogen @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Vorige @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Uren verlagen @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Volgende @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minuten verhogen @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Laatste @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minuten verlagen @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Seconden @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Seconden verhogen @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Seconden verlagen @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Laden... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Geavanceerd zoeken @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relatieve datums - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - nu - From @@ -3882,11 +3878,19 @@ Toegevoegd + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + nu + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Binnen 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Binnen 1 maand @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Binnen 3 maanden @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Binnen 1 jaar @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Dit jaar @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Deze maand @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Gisteren + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Zonder toewijzing @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Aangepaste velden @@ -8817,7 +8853,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9037,7 +9073,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Titel en inhoud @@ -9045,7 +9081,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Bestandstype @@ -9053,7 +9089,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Meer zoals @@ -9061,7 +9097,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 gelijk aan @@ -9069,7 +9105,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 is leeg @@ -9077,7 +9113,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 is niet leeg @@ -9085,7 +9121,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 groter dan @@ -9093,7 +9129,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 kleiner dan @@ -9101,7 +9137,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9109,7 +9145,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Zonder correspondent @@ -9117,7 +9153,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9125,7 +9161,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Zonder documenttype @@ -9133,7 +9169,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9141,7 +9177,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Zonder opslagpad @@ -9149,7 +9185,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Label: @@ -9157,7 +9193,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Zonder label @@ -9165,7 +9201,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Aangepaste velden zoekopdracht @@ -9173,7 +9209,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Titel: @@ -9181,7 +9217,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9189,7 +9225,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Eigenaar: @@ -9197,7 +9233,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Eigenaar niet in: @@ -9205,7 +9241,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Zonder eigenaar diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index 71152f5f9..d10052690 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Lukk @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Forrige @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Neste @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Forrige måned @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Neste måned @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Lukk @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Velg en måned @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Timer @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Velg år @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minutter @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Først @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Økende timer @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Forrige @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Reduksjon i timer @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Neste @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Økende minutter @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Siste @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Reduksjon i minutter @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekunder @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Tilleggstid i sekund @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Reduksjon sekunder @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Laster... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Avansert søk @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - - From @@ -3882,11 +3878,19 @@ Lagt til + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Ikke tildelt @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Tittel & innhold @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Mer lik @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 er lik @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 er tom @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 er ikke tom @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 større enn @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 mindre enn @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Uten korrespondent @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Uten dokumenttype @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Uten lagringssti @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Uten noen etiketter @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Tittel: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Eier: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Eier ikke i: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Uten en eier diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index ee670d97c..88236b107 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Zamknij @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Poprzedni @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Następny @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Poprzedni miesiąc @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Następny miesiąc @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 GG @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zamknij @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Wybierz miesiąc @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Godziny @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Wybierz rok @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minuty @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Pierwszy @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zwiększ godziny @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Poprzedni @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zmniejsz godziny @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Następny @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zwiększ minuty @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Ostatni @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zmniejsz minuty @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekundy @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zwiększa sekundy @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zmniejsz sekundy @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Wczytywanie... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Wyszukiwanie zaawansowane @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Daty względne - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - teraz - From @@ -3882,11 +3878,19 @@ Dodano + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + teraz + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 W ciągu 1 tygodnia @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 W ciągu 1 miesiąca @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 W ciągu 3 miesięcy @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 W ciągu 1 roku @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 W tym roku @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 W tym miesiącu @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Wczoraj + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nieprzypisane @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Otwórz filtr @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Pola dodatkowe @@ -8817,7 +8853,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9037,7 +9073,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Tytuł & treść @@ -9045,7 +9081,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Typ pliku @@ -9053,7 +9089,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Podobne do @@ -9061,7 +9097,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 równa się @@ -9069,7 +9105,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 jest pusty @@ -9077,7 +9113,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 nie jest pusty @@ -9085,7 +9121,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 większy niż @@ -9093,7 +9129,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 mniejsze niż @@ -9101,7 +9137,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Korespondent: @@ -9109,7 +9145,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Bez nadawcy @@ -9117,7 +9153,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Typ dokumentu: @@ -9125,7 +9161,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Bez typu dokumentu @@ -9133,7 +9169,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Ścieżka przechowywania: @@ -9141,7 +9177,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Bez ścieżki zapisu @@ -9149,7 +9185,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9157,7 +9193,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Bez żadnego tagu @@ -9165,7 +9201,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Zapytanie o pola dodatkowe @@ -9173,7 +9209,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Tytuł: @@ -9181,7 +9217,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 Numer archiwum: @@ -9189,7 +9225,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Właściciel: @@ -9197,7 +9233,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Właściciel nie w: @@ -9205,7 +9241,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Bez właściciela diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index db5520eff..7d76efb02 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Fechar @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Anterior @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Próximo @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Mês anterior @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Próximo mês @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Fechar @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Selecione o mês @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Horas @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Selecione o ano @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minutos @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Primeiro @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Acrescentar horas @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Anterior @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Deduzir horas @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Próximo @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Acrescentar minutos @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Último @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Deduzir minutos @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Segundos @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Acrescentar segundos @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Deduzir segundos @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Carregando... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Pesquisa avançada @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Datas relacionadas - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - hoje - From @@ -3882,11 +3878,19 @@ Adicionado + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + hoje + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Em 1 semana @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Em 1 mês @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Em 3 meses @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Em 1 ano @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Este ano @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Este mês @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Ontem + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5883,7 +5919,7 @@ Erro ao enviar documentos por e-mail Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Não atribuído @@ -5892,7 +5928,7 @@ Erro ao enviar documentos por e-mail Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Abrir filtro @@ -7507,7 +7543,7 @@ Erro ao enviar documentos por e-mail src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8131,7 +8167,7 @@ Erro ao enviar documentos por e-mail src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Campos personalizados @@ -8819,7 +8855,7 @@ Erro ao enviar documentos por e-mail src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9039,7 +9075,7 @@ Erro ao enviar documentos por e-mail Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Título & conteúdo @@ -9047,7 +9083,7 @@ Erro ao enviar documentos por e-mail File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Tipo de arquivo @@ -9055,7 +9091,7 @@ Erro ao enviar documentos por e-mail More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Mais parecido @@ -9063,7 +9099,7 @@ Erro ao enviar documentos por e-mail equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 igual a @@ -9071,7 +9107,7 @@ Erro ao enviar documentos por e-mail is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 está vazio @@ -9079,7 +9115,7 @@ Erro ao enviar documentos por e-mail is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 não está vazio @@ -9087,7 +9123,7 @@ Erro ao enviar documentos por e-mail greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 maior que @@ -9095,7 +9131,7 @@ Erro ao enviar documentos por e-mail less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 menor que @@ -9103,7 +9139,7 @@ Erro ao enviar documentos por e-mail Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondente: @@ -9111,7 +9147,7 @@ Erro ao enviar documentos por e-mail Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Sem correspondente @@ -9119,7 +9155,7 @@ Erro ao enviar documentos por e-mail Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Tipo de documento: @@ -9127,7 +9163,7 @@ Erro ao enviar documentos por e-mail Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Sem tipo de documento @@ -9135,7 +9171,7 @@ Erro ao enviar documentos por e-mail Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Caminho de armazenamento: @@ -9143,7 +9179,7 @@ Erro ao enviar documentos por e-mail Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Sem o caminho de armazenamento @@ -9151,7 +9187,7 @@ Erro ao enviar documentos por e-mail Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9159,7 +9195,7 @@ Erro ao enviar documentos por e-mail Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Sem etiquetas @@ -9167,7 +9203,7 @@ Erro ao enviar documentos por e-mail Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Consulta de campos personalizados @@ -9175,7 +9211,7 @@ Erro ao enviar documentos por e-mail Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Título: @@ -9183,7 +9219,7 @@ Erro ao enviar documentos por e-mail ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 NSA: @@ -9191,7 +9227,7 @@ Erro ao enviar documentos por e-mail Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Proprietário: @@ -9199,7 +9235,7 @@ Erro ao enviar documentos por e-mail Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 @@ -9207,7 +9243,7 @@ Erro ao enviar documentos por e-mail Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Sem um proprietário diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index b05bd0fd6..d303b67e3 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Fechar @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Anterior @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Seguinte @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Mês anterior @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Mês seguinte @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Fechar @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Selecionar mês @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Horas @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Selecionar ano @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minutos @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Primeiro @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrementar horas @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Anterior @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Diminuir horas @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Seguinte @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrementar minutos @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Último @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Diminuir minutos @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Segundos @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrementar segundos @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Diminuir segundos @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ A carregar... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Pesquisa avançada @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - agora - From @@ -3882,11 +3878,19 @@ Adicionado + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + agora + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Dentro de 1 semana @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Dentro de 1 mês @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Dentro de 3 meses @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Dentro de 1 ano @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Este ano @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Este mês @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Ontem + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Não atribuído @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Título & conteúdo @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Semelhantes a @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 é igual a @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 está vazio @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 não está vazio @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 é maior que @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 é menor que @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Sem correspondente @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Sem tipo de documento @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Sem caminho de armazenamento @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Sem etiquetas @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Título: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 NSA: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Dono: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Owner not in: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Without an owner diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index 302a90854..15278aa0f 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Închide @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Anterior @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Următor @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Luna precedentă @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Luna următoare @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Închide @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Selectați luna @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Ore @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Selectați anul @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minute @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Primul @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrementare ore @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Anteriorul @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrementare oră @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Următor @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrementare minute @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Ultima @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrementare minute @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Secunde @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Incrementare secunde @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Decrementare secunde @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Se încarcă... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Căutare avansată @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - acum - From @@ -3882,11 +3878,19 @@ Adăugat + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + acum + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nealocate @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Titlu si conținut @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Asemănătoare @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 equals @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 is empty @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 is not empty @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 greater than @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 less than @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Fără corespondent @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Fară tip @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Without storage path @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Fară etichete @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Titlu: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 Aviz prealabil de expediție: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Owner: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Owner not in: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Without an owner diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index 40e49cb17..7ad08bc91 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Закрыть @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Предыдущий @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Следующий @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Предыдущий месяц @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Следующий месяц @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ЧЧ @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Закрыть @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Выберите месяц @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Часы @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Выберите год @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Минуты @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Первый @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Увеличить часы @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Предыдущий @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Уменьшить часы @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Следующий @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Увеличить минуты @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Последний @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Уменьшить минуты @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 СС @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Секунды @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Увеличить секунды @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Уменьшить секунды @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Загрузка... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Расширенный поиск @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Относительные даты - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - сейчас - From @@ -3882,11 +3878,19 @@ Добавлено + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + сейчас + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 В течение 1 недели @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 В течение 1 месяца @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 В течении 3-х месяцев @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 В течение 1 года @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 В этом году @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 В этом месяце @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Вчера + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Не назначено @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Открыть фильтр @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Пользовательские поля @@ -8817,7 +8853,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9037,7 +9073,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Название и содержимое @@ -9045,7 +9081,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Тип файла @@ -9053,7 +9089,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Больше похожих @@ -9061,7 +9097,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 совпадает с @@ -9069,7 +9105,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 не заполнено @@ -9077,7 +9113,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 не является пустым @@ -9085,7 +9121,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 больше чем @@ -9093,7 +9129,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 меньше чем @@ -9101,7 +9137,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Корреспондент: @@ -9109,7 +9145,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Без корреспондента @@ -9117,7 +9153,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Тип документа: @@ -9125,7 +9161,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Без типа документа @@ -9133,7 +9169,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Путь хранения: @@ -9141,7 +9177,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Без пути хранения @@ -9149,7 +9185,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Тег: @@ -9157,7 +9193,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Без тегов @@ -9165,7 +9201,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Запрос пользовательских полей @@ -9173,7 +9209,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Название: @@ -9181,7 +9217,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 Архивный номер: @@ -9189,7 +9225,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Владелец: @@ -9197,7 +9233,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Владелец не в: @@ -9205,7 +9241,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Без владельца diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf index dd85de97a..b627a0288 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Zavrieť @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Predchádzajúci @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Ďalší @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Predchádzajúci mesiac @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Nasledujúci mesiac @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zavrieť @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Vyberte mesiac @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Hodín @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Vyberte rok @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minúty @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Prvý @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Navýšiť hodiny @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Predchádzajúci @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Znížiť hodiny @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Ďalší @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Navýšiť minúty @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Posledný @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Znížiť minúty @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekundy @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Navýšiť sekundy @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Znížiť sekundy @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Načítava sa... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Rozšírené vyhľadávanie @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - teraz - From @@ -3882,11 +3878,19 @@ Pridané + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + teraz + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nepriradené @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Názov & obsah @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Podobné @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 rovná sa @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 je prázdny @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 nie je prázdny @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 väčšie ako @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 menšie ako @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Nepriradené @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Nepriradené @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Nepriradené @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Nepriradené @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Názov: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Vlastník: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Vlastník nie je: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Bez vlastníka diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index 63fd2d0d7..f1f7902ff 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Zapri @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Prejšnji @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Naslednji @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Prejšnji mesec @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Naslednji mesec @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zapri @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Izberi mesec @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Ura @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Izberi leto @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minuta @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Prvi @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Povečanje ur @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Prejšnji @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zmanjšanje ur @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Naslednja @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Povečanje minut @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zadnji @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zmanjšanje minut @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekunde @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Povečanje sekund @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zmanjšanje sekund @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Nalaganje... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Napredno iskanje @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relativni datumi - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - zdaj - From @@ -3882,11 +3878,19 @@ Dodano + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + zdaj + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 V 1 tednu @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 V 1 mesecu @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 V 3 mesecih @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 V 1 letu @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 To leto @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Ta mesec @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Včeraj + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Ni dodeljeno @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Odpri filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Polja po meri @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Naslov & vsebina @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Vrsta datoteke @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Bolj podobno @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 je enako @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 je prazno @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 ni prazno @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 večje kot @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 manj kot @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Dopisnik: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Brez dopisnika @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Vrsta dokumenta: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Brez vrste dokumenta @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Pot shranjevanja: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Brez poti shrambe @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Oznaka: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Brez kakršne koli oznake @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Poizvedba po poljih po meri @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Naslov: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Lastnik: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Lastnika ni v: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Brez lastnika diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index e1079cb28..bd792aa3f 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Zatvori @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Prethodni @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Sledeći @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Prethodni mesec @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Naredni mesec @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Zatvori @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Odaberi mesec @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Časovi @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Odaberi godinu @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minuta @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Prvi @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Povećaj sate @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Prethodni @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Smanji sate @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sledeći @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Povećaj minute @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Poslednji @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Smanji minute @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekundi @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Povećaj sekunde @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Smanji sekunde @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Učitavanje... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Napredna pretraga @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relativni datumi - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - sada - From @@ -3882,11 +3878,19 @@ Dodato + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + sada + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 U roku od 1 nedelje @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 U roku od mesec dana @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 U roku od tri meseca @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 U roku od godinu dana @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Ove godine @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Ovaj mesec @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Juče + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nije dodeljen @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Otvori filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Dodatna polja @@ -8819,7 +8855,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9039,7 +9075,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Naslov i sadržaj @@ -9047,7 +9083,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Vrsta fajla @@ -9055,7 +9091,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Slično @@ -9063,7 +9099,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 jednako @@ -9071,7 +9107,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 je prazan @@ -9079,7 +9115,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 nije prazan @@ -9087,7 +9123,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 veće od @@ -9095,7 +9131,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 manje od @@ -9103,7 +9139,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Korespondent: @@ -9111,7 +9147,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Bez korespondenta @@ -9119,7 +9155,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Vrsta dokumenta: @@ -9127,7 +9163,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Bez tipa dokumenta @@ -9135,7 +9171,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Putanja skladišta: @@ -9143,7 +9179,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Bez putanje skladišta @@ -9151,7 +9187,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Oznaka: @@ -9159,7 +9195,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Bez oznake @@ -9167,7 +9203,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Upit za prilagođeno polje @@ -9175,7 +9211,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Naslov: @@ -9183,7 +9219,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9191,7 +9227,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Vlasnik: @@ -9199,7 +9235,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Vlasnik nije: @@ -9207,7 +9243,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Bez vlasnika diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index 480ab2ed3..86a6ed5ef 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Stäng @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Föregående @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Nästa @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Föregående månad @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Nästa månad @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Stäng @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Välj månad @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Timmar @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Välj år @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minuter @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Första @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Öka timmar @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Föregående @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minska timmar @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Nästa @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Öka minuter @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sista @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minska minuter @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sekunder @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Öka sekunder @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Minska sekunder @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Laddar... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Avancerad sökning @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - nu - From @@ -3882,11 +3878,19 @@ Tillagd + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + nu + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Inte tilldelad @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Titel & innehåll @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Mer som @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 är lika med @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 är tom @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 är inte tom @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 större än @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 mindre än @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Utan korrespondent @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Utan dokumenttyp @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Utan lagringsplats @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Utan tagg @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Titel: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Ägare: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Ägare ej i: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Utan ägare diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf index 45ec44995..ab0af9023 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 ปิด @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 ก่อนหน้า @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 ถัดไป @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 เดือนก่อนหน้า @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 เดือนถัดไป @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ชช @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ปิด @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 เลือกเดือน @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ชั่วโมง @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 นน @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 เลือกปี @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 นาที @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 แรก @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 เพิ่มชั่วโมง @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ก่อนหน้า @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ลดชั่วโมง @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ต่อไป @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 เพิ่มนาที @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ล่าสุด @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ลดนาที @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 วว @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 วินาที @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 เพิ่มวินาที @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ลดวินาที @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ กำลังโหลด... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 ค้นหาขั้นสูง @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Relative dates - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - ตอนนี้ - From @@ -3882,11 +3878,19 @@ นำเข้า + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + ตอนนี้ + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Within 1 week @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Within 1 month @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Within 3 months @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Within 1 year @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 This year @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 This month @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Yesterday + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned ไม่กำหนด @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Open filter @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Custom fields @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 ชื่อ & เนื้อหา @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 File type @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 อื่น ๆ ที่คล้ายกัน @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 เท่ากับ @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 ว่างเปล่า @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 ไม่ว่างเปล่า @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 มากกว่า @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 น้อยกว่า @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Without correspondent @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Without document type @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 ไม่มีพาธจัดเก็บ @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 ไม่มีแท็กใด ๆ @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Title: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Owner: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Owner not in: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 ไม่มีเจ้าของ diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index efedef8ad..1d6fbd646 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Kapat @@ -13,16 +13,16 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader - / Slaytı + / Slaytı Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Önceki @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Sonraki @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Önceki ay @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Sonraki ay @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Kapat @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Ay seçin @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Saat @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Yıl seçin @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Dakika @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 İlk @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Saati arttır @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Önceki @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Saati azalt @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Sonraki @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Dakikayı arttır @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Son @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Dakikayı azalt @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Saniye @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Saniyeyi arttır @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Saniyeyi azalt @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -444,7 +444,7 @@ src/app/app.component.ts 178 - Kontrol paneli, “Gelen Kutusu” gibi kaydedilmiş görünümleri göstermek için kullanılabilir. > Görünümler, oluşturduktan sonra Yönet > Kaydedilmiş Görünümler altında bulunur. + Gösterge paneli, “Gelen Kutusu” gibi kaydedilmiş görünümleri göstermek için kullanılabilir. > Görünümler, oluşturduktan sonra Yönet > Kaydedilmiş Görünümler altında bulunur. Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms. @@ -476,7 +476,7 @@ src/app/app.component.ts 203 - Herhangi bir filtre kombinasyonu, daha sonra kontrol panelinde ve/veya kenar çubuğunda görüntülenebilen bir “görünüm” olarak kaydedilebilir. + Herhangi bir filtre kombinasyonu, daha sonra gösterge panelinde ve/veya kenar çubuğunda görüntülenebilen bir “görünüm” olarak kaydedilebilir. Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -756,7 +756,7 @@ src/app/components/manage/saved-views/saved-views.component.html 52 - Show + Göster lines @@ -764,7 +764,7 @@ src/app/components/admin/logs/logs.component.html 17 - lines + satırlar Auto refresh @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Yükleniyor... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Gelişmiş arama @@ -1588,7 +1596,7 @@ src/app/components/admin/settings/settings.component.html 351 - Kontrol panodaki bildirimleri bastır + Kontrol panelindeki bildirimleri sustur This will suppress all messages about document processing status on the dashboard. @@ -1596,7 +1604,7 @@ src/app/components/admin/settings/settings.component.html 351 - Bu, kontrol panodaki belge işleme durumuyla ilgili tüm iletileri bastırır. + Bu, kontrol panelindeki belge işleme durumuyla ilgili tüm iletileri sustur. Cancel @@ -2060,7 +2068,7 @@ src/app/components/admin/tasks/tasks.component.html 134 - {VAR_PLURAL, plural, =1 {Bir görev} other { toplam görevler}} + {VAR_PLURAL, plural, =1 {Bir görev} other { toplam görev}}  ( selected) @@ -2076,7 +2084,7 @@ src/app/components/admin/tasks/tasks.component.html 148,150 - Failed + Başarısız Complete @@ -2084,7 +2092,7 @@ src/app/components/admin/tasks/tasks.component.html 156,158 - Complete + Tamamlandı Started @@ -2092,7 +2100,7 @@ src/app/components/admin/tasks/tasks.component.html 164,166 - Started + Başladı Queued @@ -2100,7 +2108,7 @@ src/app/components/admin/tasks/tasks.component.html 172,174 - Queued + Sırada Result @@ -2148,7 +2156,7 @@ src/app/components/admin/tasks/tasks.component.ts 161 - Error dismissing tasks + Görevleri iptal ederken hatayla karşılașıldı Error dismissing task @@ -2156,7 +2164,7 @@ src/app/components/admin/tasks/tasks.component.ts 170 - Error dismissing task + Görevi iptal ederken hatayla karşılașıldı queued @@ -2432,7 +2440,7 @@ src/app/components/admin/trash/trash.component.html 94 - {VAR_PLURAL, plural, =1 {Çöpte bir belge var} other { çöpteki toplam belge}} + {VAR_PLURAL, plural, =1 {Çöpte bir belge var} other {Çöpte toplam belge var}} Confirm delete @@ -3088,7 +3096,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 133 - Depolama Yolları + Depolama Dizinleri Custom Fields @@ -3420,7 +3428,7 @@ src/app/components/app-frame/global-search/global-search.component.ts 249 - Successfully updated object. + Nesne başarıyla güncellendi. Error occurred saving object. @@ -3432,7 +3440,7 @@ src/app/components/app-frame/global-search/global-search.component.ts 252 - Error occurred saving object. + Nesneyi kaydederken bir hatayla karşılașıldı. Clear All @@ -3532,7 +3540,7 @@ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html 22 - Use metadata from: + Şu kaynaklardan meta verileri kullan: Regenerate all metadata @@ -3540,7 +3548,7 @@ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html 24 - Regenerate all metadata + Tüm metaverileri yeniden oluştur Try to include archive version in merge for non-PDF files @@ -3548,7 +3556,7 @@ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html 32 - Try to include archive version in merge for non-PDF files + PDF olmayan dosyalar için birleştirme işlemine arşiv sürümünü dahil etmeye çalış Delete original documents after successful merge @@ -3556,7 +3564,7 @@ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html 36 - Delete original documents after successful merge + Birleştirme işlemi başarıyla tamamlandıktan sonra orijinal belgeleri sil Note that only PDFs will be included. @@ -3564,7 +3572,7 @@ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html 39 - Note that only PDFs will be included. + Yalnızca PDF dosyaları dahil edilecektir. Note that only PDFs will be rotated. @@ -3572,7 +3580,7 @@ src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html 25 - Note that only PDFs will be rotated. + Yalnızca PDF dosyaları döndürülecektir. View @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Göreceli tarihler - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - şimdi - From @@ -3882,11 +3878,19 @@ Eklendi + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + şimdi + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 1 hafta içinde @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 1 ay içinde @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 3 ay içinde @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 1 yıl içinde @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Bu yıl @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Bu ay @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Dün + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Geçen Hafta + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Geçtiğimiz ay + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Geçen çeyrek + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Geçen yıl + Matching algorithm @@ -4060,7 +4096,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html 44 - 3-character currency code + 3-harfli para birimi kodu Use locale @@ -4068,7 +4104,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html 44 - Use locale + Yerel kullan Create new custom field @@ -4076,7 +4112,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts 118 - Create new custom field + Yeni bir özel alan oluştur Edit custom field @@ -4084,7 +4120,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts 122 - Edit custom field + Özel alanı düzenle Create new document type @@ -4124,7 +4160,7 @@ src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts 36 - Create new user group + Yeni bir kullanıcı grubu oluştur Edit user group @@ -4374,7 +4410,7 @@ tüm krite src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 42 - Consumption scope + Tüketim kapsamı See docs for .eml processing requirements @@ -4382,7 +4418,7 @@ tüm krite src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 42 - See docs for .eml processing requirements + .eml işleme gereksinimleri için kullanma kılavuzuna bakınız Attachment type @@ -4406,7 +4442,7 @@ tüm krite src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 47 - Include only files matching + Yalnızca şu ile eşleşen dosyaları dahil et Optional. Wildcards e.g. *.pdf or *invoice* allowed. Can be comma-separated list. Case insensitive. @@ -4418,7 +4454,7 @@ tüm krite src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 48 - Optional. Wildcards e.g. *.pdf or *invoice* allowed. Can be comma-separated list. Case insensitive. + İsteğe bağlı. Joker karakterler, örneğin *.pdf veya *fatura* olarak kullanılabilir. Virgülle ayrılmış liste olabilir. Büyük/küçük harf duyarlı değildir. Exclude files matching @@ -4570,7 +4606,7 @@ tüm krite src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 57 - Process message as .eml and attachments separately + Mesajı .eml olarak ve ekleri ayrı ayrı işle System default @@ -4726,7 +4762,7 @@ tüm krite src/app/components/manage/storage-path-list/storage-path-list.component.ts 51 - Yol + Dizin See <a target='_blank' href='https://docs.paperless-ngx.com/advanced_usage/#file-name-handling'>the documentation</a>. @@ -4818,7 +4854,7 @@ tüm krite src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 15 - Parent + Üst düğüm Inbox tag @@ -5098,7 +5134,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 134 - Positive values will trigger after the date, negative values before. + Pozitif değerler tarihten sonra, negatif değerler tarihten önce tetiklenecektir. Relative to @@ -5106,7 +5142,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 139 - Relative to + Şunun akrabası Custom field @@ -5130,7 +5166,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 149 - Recurring + Tekrarlanan Trigger is recurring. @@ -5138,7 +5174,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 149 - Trigger is recurring. + Tetikleyici tekrar ediyor. Recurring interval days @@ -5146,7 +5182,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 153 - Recurring interval days + Tekrarlayan aralık günleri Repeat the trigger every n days. @@ -5154,7 +5190,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 153 - Repeat the trigger every n days. + Tetiği her "n" günde bir tekrarlayın. Trigger for documents that match all filters specified below. @@ -5186,7 +5222,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 163 - Filter sources + Kaynakları filtrele Filter path @@ -5242,7 +5278,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 183 - Advanced Filters + Gelişmiş Filtreler Add filter @@ -5250,7 +5286,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 190 - Add filter + Filtre ekle No advanced workflow filters defined. @@ -5274,7 +5310,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 258 - Action type + Eylem türü Assign title @@ -5306,7 +5342,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 267 - Assign storage path + Depolama dizini atayın Assign custom fields @@ -5314,7 +5350,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 268 - Assign custom fields + Özel alanları atayın Assign owner @@ -5346,7 +5382,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 320 - Remove tags + Etiketleri kaldır Remove all @@ -5378,7 +5414,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 358 - Remove all + Tümünü kaldır Remove correspondents @@ -5394,7 +5430,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 332 - Remove document types + Tüm belge tiplerini kaldır Remove storage paths @@ -5402,7 +5438,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 338 - Remove storage paths + Tüm depolama dizinlerini kaldır Remove custom fields @@ -5410,7 +5446,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 344 - Remove custom fields + Özel alanları kaldır Remove owners @@ -5418,7 +5454,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 351 - Remove owners + Tüm sahipleri kaldır Remove permissions @@ -5426,7 +5462,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 357 - Remove permissions + İzinleri kaldır View permissions @@ -5434,7 +5470,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 360 - View permissions + İzinleri görüntüle Edit permissions @@ -5442,7 +5478,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 379 - Edit permissions + İzinleri düzenle Email subject @@ -5490,7 +5526,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 420 - Use parameters for webhook body + Webhook gövdesi için parametreleri kullanın Send webhook payload as JSON @@ -5498,7 +5534,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 421 - Send webhook payload as JSON + Webhook yükünü JSON olarak gönder Webhook params @@ -5590,7 +5626,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 109 - İşleme başladı + Tüketim işlemi başladı Document Added @@ -5646,7 +5682,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 203 - Has any of these tags + Bu herhangi etiketlere sahip Has all of these tags @@ -5654,7 +5690,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 210 - Has all of these tags + Bu tüm etiketlere sahip Does not have these tags @@ -5662,7 +5698,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 217 - Does not have these tags + Bu etiketlere sahip değil Has correspondent @@ -5678,7 +5714,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 232 - Does not have correspondents + Muhatablara sahip değil Has document type @@ -5686,7 +5722,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 240 - Has document type + Belge türüne sahip Does not have document types @@ -5694,7 +5730,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 248 - Does not have document types + Belge türlerine sahip değil Has storage path @@ -5702,7 +5738,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 256 - Has storage path + Depolama dizinine sahip Does not have storage paths @@ -5710,7 +5746,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 264 - Does not have storage paths + Depolama dizininlerine sahip değil Matches custom field query @@ -5718,7 +5754,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 272 - Matches custom field query + Özel alan sorgusuyla eşleşir Create new workflow @@ -5742,7 +5778,7 @@ tüm krite src/app/components/common/email-document-dialog/email-document-dialog.component.html 2,6 - {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}} + {VAR_PLURAL, plural, =1 {1 Posta Belgesi} other { Posta Belgesi}} Email address(es) @@ -5778,7 +5814,7 @@ tüm krite src/app/components/common/email-document-dialog/email-document-dialog.component.html 27 - Use archive version + Arşiv sürümünü kullan Send email @@ -5810,7 +5846,7 @@ tüm krite src/app/components/common/email-document-dialog/email-document-dialog.component.ts 69 - Error emailing documents + Belgeleri e-posta ile gönderirken bir hatayla karşılașıldı Error emailing document @@ -5884,7 +5920,7 @@ tüm krite Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Atanmadı @@ -5893,7 +5929,7 @@ tüm krite Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 filtresini aç @@ -6252,7 +6288,7 @@ tüm krite src/app/components/common/pdf-editor/pdf-editor.component.html 44 - Add / remove document split here + Burada belge ayrıcı ekle/kaldır Split here @@ -6284,7 +6320,7 @@ tüm krite src/app/components/common/pdf-editor/pdf-editor.component.html 94 - Copy metadata + Meta veriyi kopyala Delete original @@ -6456,7 +6492,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 33 - API Auth Token + API Yetkilendirme Tokeni Copy @@ -6504,7 +6540,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 47 - Regenerate auth token + Kimlik doğrulama tokenini yeniden oluştur Copied! @@ -6528,7 +6564,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 56 - Warning: changing the token cannot be undone + Uyarı: Token değiştirilmesi geri alınamaz Connected social accounts @@ -6536,7 +6572,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 62 - Connected social accounts + Bağlı sosyal hesaplar Set a password before disconnecting social account. @@ -6544,7 +6580,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 66 - Set a password before disconnecting social account. + Sosyal medya hesabını kaldırmadan önce bir şifre belirleyin. Disconnect @@ -6560,7 +6596,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 74 - Disconnect social account + sosyal hesabı kaldır Warning: disconnecting social accounts cannot be undone @@ -6568,7 +6604,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 84 - Warning: disconnecting social accounts cannot be undone + Uyarı: sosyal hesapların sistemden kaldırılması geri alınamaz Connect new social account @@ -6576,7 +6612,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 89 - Connect new social account + Yeni sosyal hesap bağla Scan the QR code with your authenticator app and then enter the code below @@ -6584,7 +6620,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 114 - Scan the QR code with your authenticator app and then enter the code below + Doğrulama uygulamanızla QR kodunu tarayın ve ardından aşağıdaki kodu girin Authenticator secret @@ -6592,7 +6628,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 117 - Authenticator secret + Kimlik doğrulama sırrı You can store this secret and use it to reinstall your authenticator app at a later time. @@ -6608,7 +6644,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 121 - Code + Kod Recovery codes will not be shown again, make sure to save them. @@ -6656,7 +6692,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 207 - Error saving profile + Profil kaydedilirken bir hata ile karşılaşıldı Error generating auth token @@ -6680,7 +6716,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 269 - Error fetching TOTP settings + TOTP ayarları alınırken bir hata ile karşılaşıldı TOTP activated successfully @@ -6688,7 +6724,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 290 - TOTP activated successfully + TOTP başarıyla etkinleştirildi Error activating TOTP @@ -6700,7 +6736,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 298 - Error activating TOTP + TOTP etkinleştirilirken bir hata ile karşılaşıldı TOTP deactivated successfully @@ -6708,7 +6744,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 314 - TOTP deactivated successfully + TOTP başarıyla devre dışı bırakıldı Error deactivating TOTP @@ -6720,7 +6756,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 321 - Error deactivating TOTP + TOTP devre dışı bırakılırken bir hata ile karşılaşıldı No existing links @@ -6736,7 +6772,7 @@ tüm krite src/app/components/common/share-links-dialog/share-links-dialog.component.html 32 - Share + Paylaş Share archive version @@ -6744,7 +6780,7 @@ tüm krite src/app/components/common/share-links-dialog/share-links-dialog.component.html 48 - Share archive version + Arşiv sürümünü paylaş Expires @@ -6764,7 +6800,7 @@ tüm krite src/app/components/common/share-links-dialog/share-links-dialog.component.ts 102 - 1 day + 1 gün 7 days @@ -6772,7 +6808,7 @@ tüm krite src/app/components/common/share-links-dialog/share-links-dialog.component.ts 26 - 7 days + 7 gün 30 days @@ -6936,7 +6972,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 80 - Up to date + Güncel Latest Migration @@ -6960,7 +6996,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 105 - Tasks Queue + Görev Sırası Redis Status @@ -6976,7 +7012,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 127 - Celery Status + Celery'nin Durumu Health @@ -6984,7 +7020,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 153 - Health + Sağlık Search Index @@ -6992,7 +7028,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 157 - Search Index + Arama İndeksi Run Task @@ -7008,7 +7044,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 245 - Run Task + Görevi Çalıştır Last Updated @@ -7016,7 +7052,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 184 - Last Updated + Son Güncellenme Tarihi Classifier @@ -7024,7 +7060,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 189 - Classifier + Sınıflandırıcı Last Trained @@ -7048,7 +7084,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 252 - Last Run + Son Çalıştırma WebSocket Connection @@ -7056,7 +7092,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 257 - WebSocket Connection + Websocket Bağlantısı OK @@ -7064,7 +7100,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 261 - OK + Tamam Copy Raw Error @@ -7072,7 +7108,7 @@ tüm krite src/app/components/common/toast/toast.component.html 43 - Copy Raw Error + Hatayı Olduğu Gibi Kopyala Hint: saved views can be created from the documents list @@ -7080,7 +7116,7 @@ tüm krite src/app/components/dashboard/dashboard.component.html 42 - Hint: saved views can be created from the documents list + İpucu: kaydedilmiş görünümler documents list 'den oluşturulabilir Hello , welcome to @@ -7088,7 +7124,7 @@ tüm krite src/app/components/dashboard/dashboard.component.ts 61 - Hello , welcome to + Merhaba , hoşgeldiniz Welcome to @@ -7096,7 +7132,7 @@ tüm krite src/app/components/dashboard/dashboard.component.ts 63 - Welcome to + Hoş Geldiniz Dashboard updated @@ -7104,7 +7140,7 @@ tüm krite src/app/components/dashboard/dashboard.component.ts 94 - Dashboard updated + Kontrol Paneli yenilendi Error updating dashboard @@ -7112,7 +7148,7 @@ tüm krite src/app/components/dashboard/dashboard.component.ts 97 - Error updating dashboard + Kontrol panelini yenilerken bir hatayla karşılașıldı Show all @@ -7176,7 +7212,7 @@ tüm krite src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 74 - Filter by owner + Sahibine göre filtrele Yes @@ -7208,7 +7244,7 @@ tüm krite src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 149 - No documents + Belge yok Statistics @@ -7224,7 +7260,7 @@ tüm krite src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 28 - Go to inbox + Gelen kutusuna git Documents in inbox @@ -7232,7 +7268,7 @@ tüm krite src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 29 - Documents in inbox + Gelen kutusundaki belgeler Go to documents @@ -7240,7 +7276,7 @@ tüm krite src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 33 - Go to documents + Belgelere git Total documents @@ -7248,7 +7284,7 @@ tüm krite src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 34 - Total documents + Toplam Belge Total characters @@ -7256,7 +7292,7 @@ tüm krite src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 38 - Total characters + Toplam Karakter Current ASN @@ -7264,7 +7300,7 @@ tüm krite src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 43 - Current ASN + Mevcut ASN Other @@ -7280,7 +7316,7 @@ tüm krite src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 6 - Upload documents + Belge veya belgeler yükle or drop files anywhere @@ -7288,7 +7324,7 @@ tüm krite src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 7 - or drop files anywhere + veya dosyaları herhangi bir yere bırakın Dismiss completed @@ -7342,7 +7378,7 @@ tüm krite src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 2 - Paperless-ngx is running! + Paperless-ngx çalışıyor! You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below. @@ -7350,7 +7386,7 @@ tüm krite src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 3 - You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below. + Belge yüklemeye hazırsınız! Bu web uygulamasının çeşitli özelliklerini kendiniz keşfedin veya aşağıdaki düğmeyi kullanarak hızlı bir tura başlayın. More detail on how to use and configure Paperless-ngx is always available in the documentation. @@ -7358,7 +7394,7 @@ tüm krite src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 4 - More detail on how to use and configure Paperless-ngx is always available in the documentation. + Paperless-ngx'in kullanımı ve yapılandırılması hakkında daha fazla bilgiye her zaman documentation adresinden ulaşabilirsiniz. Thanks for being a part of the Paperless-ngx community! @@ -7366,7 +7402,7 @@ tüm krite src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 7 - Thanks for being a part of the Paperless-ngx community! + Paperless-ngx topluluğunun bir parçası olduğunuz için teşekkür ederiz! Start the tour @@ -7446,7 +7482,7 @@ tüm krite src/app/components/document-detail/document-detail.component.html 58 - Print + Yazdır More like this @@ -7470,7 +7506,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 1392 - PDF Editor + PDF Düzenleyici Send @@ -7478,7 +7514,7 @@ tüm krite src/app/components/document-detail/document-detail.component.html 84 - Send + Gönder Previous @@ -7508,7 +7544,7 @@ tüm krite src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -7742,7 +7778,7 @@ tüm krite src/app/components/document-detail/document-detail.component.html 321,324 - Notes + Notlar History @@ -7750,7 +7786,7 @@ tüm krite src/app/components/document-detail/document-detail.component.html 332 - History + Geçmiş Save & next @@ -7766,7 +7802,7 @@ tüm krite src/app/components/document-detail/document-detail.component.html 372 - Save & close + Kaydet ve kapat Document loading... @@ -7774,7 +7810,7 @@ tüm krite src/app/components/document-detail/document-detail.component.html 382 - Document loading... + Belge Yükleniyor... Enter Password @@ -7798,7 +7834,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 450 - Document changes detected + Belge değişiklikler algılandı The version of this document in your browser session appears older than the existing version. @@ -7822,7 +7858,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 454 - Ok + Tamam Next document @@ -7830,7 +7866,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 580 - Next document + Sonraki belge Previous document @@ -7838,7 +7874,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 590 - Previous document + Önceki belge Close document @@ -7858,7 +7894,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 605 - Save document + Belgeyi kaydet Save and close / next @@ -7866,7 +7902,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 614 - Save and close / next + Kaydet, kapat ve bir sonrakine geç Error retrieving metadata @@ -7894,7 +7930,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 894 - Document "" saved successfully. + "" belgesi başarıyla kaydedildi. Error saving document "" @@ -7910,7 +7946,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 950 - Error saving document + Belge kaydedilirken bir hata ile karşılaşıldı Do you really want to move the document "" to the trash? @@ -7942,7 +7978,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 756 - Move to trash + Çöp kutusuna taşı Error deleting document @@ -7950,7 +7986,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 1004 - Error deleting document + Belge silinirken hata oluştu Reprocess confirm @@ -7962,7 +7998,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 794 - Reprocess confirm + Yeniden işlemeyi onayla This operation will permanently recreate the archive file for this document. @@ -8034,7 +8070,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 1460 - Print failed. + Yazdırma başarısız oldu. Error loading document for printing. @@ -8062,7 +8098,7 @@ tüm krite src/app/components/document-history/document-history.component.html 10 - No entries found. + Hiçbir kayıt bulunamadı. Edit: @@ -8118,7 +8154,7 @@ tüm krite src/app/components/document-list/filter-editor/filter-editor.component.html 73 - Filter storage paths + Depolama dizinlerine göre filtrele Custom fields @@ -8132,9 +8168,9 @@ tüm krite src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 - Custom fields + Özel alanlar Filter custom fields @@ -8158,7 +8194,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.html 94 - Rotate + Döndür Merge @@ -8166,7 +8202,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.html 97 - Merge + Birleştir Include: @@ -8174,7 +8210,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.html 123 - Include: + Dahil et: Archived files @@ -8182,7 +8218,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.html 127 - Archived files + Arşivlenen dosyalar Original files @@ -8190,7 +8226,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.html 131 - Original files + Orijinal dosyalar Use formatted filename @@ -8198,7 +8234,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.html 136 - Use formatted filename + Formatlanmış dosya adını kullan Error executing bulk operation @@ -8468,7 +8504,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 868 - Merged document will be queued for consumption. + Birleştirilen belge tüketim için sıraya alınacaktır. Custom fields updated. @@ -8476,7 +8512,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 892 - Custom fields updated. + Özel alanlar güncelleştirildi. Error updating custom fields. @@ -8484,7 +8520,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 901 - Error updating custom fields. + Özel alanları güncellerken bir hatayla karşılaşıldı. {VAR_PLURAL, plural, =1 {Set custom fields for 1 document} other {Set custom fields for documents}} @@ -8492,7 +8528,7 @@ tüm krite src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html 3,7 - {VAR_PLURAL, plural, =1 {Set custom fields for 1 document} other {Set custom fields for documents}} + {VAR_PLURAL, plural, =1 {1 belge için özel alanlar ayarla} other { belge için özel alanlar ayarla}} Select custom fields @@ -8509,8 +8545,7 @@ tüm krite src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html 73,78 - {VAR_PLURAL, plural, =1 {This operation will also remove 1 custom field from the selected documents.} other {This operation will also - remove custom fields from the selected documents.}} + {VAR_PLURAL, plural, =1 {Bu işlem, seçilen belgelerden 1 özel alanı da kaldıracaktır.} other {Bu işlem, seçilen belgelerden özel alanı da kaldıracaktır.}} Filter by tag @@ -8530,7 +8565,7 @@ tüm krite src/app/components/document-list/document-card-large/document-card-large.component.html 91 - View notes + Notları görüntüle Created: @@ -8590,7 +8625,7 @@ tüm krite src/app/components/document-list/document-card-small/document-card-small.component.html 106 - {VAR_PLURAL, plural, =1 {1 page} other { pages}} + {VAR_PLURAL, plural, =1 {1 sayfa} other { sayfa}} Shared @@ -8610,7 +8645,7 @@ tüm krite src/app/pipes/username.pipe.ts 35 - Shared + Paylaşıldı Score: @@ -8702,7 +8737,7 @@ tüm krite src/app/components/document-list/document-list.component.html 18 - Select: + Seç: None @@ -8758,7 +8793,7 @@ tüm krite src/app/components/document-list/document-list.component.html 117 - All saved views + Tüm kaydedilen görünümler {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} @@ -8766,7 +8801,7 @@ tüm krite src/app/components/document-list/document-list.component.html 137 - {VAR_PLURAL, plural, =1 {Seçili 1 belgeden} other {Seçili , belgeden}} + {VAR_PLURAL, plural, =1 {Bir belgeden seçilen } other { belgeden Seçilen }} {VAR_PLURAL, plural, =1 {One document} other { documents}} @@ -8810,7 +8845,7 @@ tüm krite src/app/components/document-list/document-list.component.html 198 - Sort by ASN + ASN'ye göre sıralama ASN @@ -8820,7 +8855,7 @@ tüm krite src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -8846,7 +8881,7 @@ tüm krite src/app/components/document-list/document-list.component.html 216 - Sort by title + Başlığa göre sırala Sort by owner @@ -8854,7 +8889,7 @@ tüm krite src/app/components/document-list/document-list.component.html 229 - Sort by owner + Sahibine göre sırala Owner @@ -8878,7 +8913,7 @@ tüm krite src/app/components/document-list/document-list.component.html 238 - Sort by notes + Notlara göre sırala Sort by document type @@ -8886,7 +8921,7 @@ tüm krite src/app/components/document-list/document-list.component.html 247 - Sort by document type + Belge türüne göre sırala Sort by storage path @@ -8894,7 +8929,7 @@ tüm krite src/app/components/document-list/document-list.component.html 256 - Sort by storage path + Kayıt dizinine göre sırala Sort by created date @@ -8902,7 +8937,7 @@ tüm krite src/app/components/document-list/document-list.component.html 265 - Sort by created date + Oluşturma tarihine göre sırala Sort by added date @@ -8910,7 +8945,7 @@ tüm krite src/app/components/document-list/document-list.component.html 274 - Sort by added date + Sisteme eklendiği tarihe göre sırala Sort by number of pages @@ -8918,7 +8953,7 @@ tüm krite src/app/components/document-list/document-list.component.html 283 - Sort by number of pages + Sayfa sayısına göre sırala Pages @@ -8938,7 +8973,7 @@ tüm krite src/app/data/paperless-config.ts 91 - Pages + Sayfalar Shared @@ -8946,7 +8981,7 @@ tüm krite src/app/components/document-list/document-list.component.html 290,292 - Shared + Paylaşılmış Sort by @@ -8970,7 +9005,7 @@ tüm krite src/app/components/document-list/document-list.component.html 332 - Preview document + Belgeyi ön izle Reset filters / selection @@ -8978,7 +9013,7 @@ tüm krite src/app/components/document-list/document-list.component.ts 296 - Reset filters / selection + Filtreleri / seçimi sıfırla Open first [selected] document @@ -8986,7 +9021,7 @@ tüm krite src/app/components/document-list/document-list.component.ts 324 - Open first [selected] document + İlk [selected] belgeyi aç Previous page @@ -8994,7 +9029,7 @@ tüm krite src/app/components/document-list/document-list.component.ts 340 - Previous page + Önceki sayfa Next page @@ -9002,7 +9037,7 @@ tüm krite src/app/components/document-list/document-list.component.ts 352 - Next page + Sonraki sayfa View "" saved successfully. @@ -9034,13 +9069,13 @@ tüm krite src/app/components/document-list/filter-editor/filter-editor.component.html 90 - Dates + Tarihler Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Başlık ve içerik @@ -9048,15 +9083,15 @@ tüm krite File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 - File type + Dosya tipi More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Benzeri gibi @@ -9064,7 +9099,7 @@ tüm krite equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 eşittir @@ -9072,7 +9107,7 @@ tüm krite is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 boş @@ -9080,7 +9115,7 @@ tüm krite is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 boş değil @@ -9088,23 +9123,23 @@ tüm krite greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 - greater than + den büyük less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 - less than + den küçük Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Muhatap: @@ -9112,7 +9147,7 @@ tüm krite Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Muhatapsız @@ -9120,7 +9155,7 @@ tüm krite Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9128,7 +9163,7 @@ tüm krite Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Belge türü olmayan @@ -9136,7 +9171,7 @@ tüm krite Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9144,15 +9179,15 @@ tüm krite Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 - Without storage path + Depolama dizini olmadan Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9160,7 +9195,7 @@ tüm krite Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Herhangi bir künye olmayan @@ -9168,15 +9203,15 @@ tüm krite Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 - Custom fields query + Özel alan sorgusu Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Başlık: @@ -9184,7 +9219,7 @@ tüm krite ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9192,25 +9227,25 @@ tüm krite Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 - Owner: + Sahibi: Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 - Owner not in: + Sahibi içinde değil: Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 - Without an owner + Sahipsiz Save current view @@ -9242,7 +9277,7 @@ tüm krite src/app/components/manage/saved-views/saved-views.component.html 20 - Gösterge tablosunda göster + Kontrol panelinde göster Filter rules error occurred while saving this view @@ -9258,7 +9293,7 @@ tüm krite src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 14 - The error returned was + Hatanın gönderdiği Enter note @@ -9266,7 +9301,7 @@ tüm krite src/app/components/document-notes/document-notes.component.html 5 - Enter note + Not ekle Please enter a note. @@ -9274,7 +9309,7 @@ tüm krite src/app/components/document-notes/document-notes.component.html 6,8 - Please enter a note. + Lütfen bir not girin Add note @@ -9282,7 +9317,7 @@ tüm krite src/app/components/document-notes/document-notes.component.html 14 - Add note + Not ekle Delete note @@ -9294,7 +9329,7 @@ tüm krite src/app/components/document-notes/document-notes.component.html 27 - Delete note + Notu sil Error saving note @@ -9302,7 +9337,7 @@ tüm krite src/app/components/document-notes/document-notes.component.ts 81 - Error saving note + Not kaydedilirken bir hata oluştu Error deleting note @@ -9310,7 +9345,7 @@ tüm krite src/app/components/document-notes/document-notes.component.ts 95 - Error deleting note + Not silerken bir hata oluştu Drop files to begin upload @@ -9330,7 +9365,7 @@ tüm krite src/app/components/file-drop/file-drop.component.ts 146 - Initiating upload... + Yükleme başlatılıyor... Failed to read dropped items: @@ -9386,7 +9421,7 @@ tüm krite src/app/components/manage/custom-fields/custom-fields.component.html 9 - Add Field + Alan Ekle Data Type @@ -9394,7 +9429,7 @@ tüm krite src/app/components/manage/custom-fields/custom-fields.component.html 18 - Data Type + Veri Tipi Filter Documents () @@ -9426,7 +9461,7 @@ tüm krite src/app/components/manage/custom-fields/custom-fields.component.html 70 - No fields defined. + Herhangi bir alan tanımlanmadı. Confirm delete field @@ -9434,7 +9469,7 @@ tüm krite src/app/components/manage/custom-fields/custom-fields.component.ts 102 - Confirm delete field + Alanı silmeyi onayla This operation will permanently delete this field. @@ -9442,7 +9477,7 @@ tüm krite src/app/components/manage/custom-fields/custom-fields.component.ts 103 - This operation will permanently delete this field. + Bu işlem alanı kalıcı olarak silecektir. Deleted field "" @@ -9450,7 +9485,7 @@ tüm krite src/app/components/manage/custom-fields/custom-fields.component.ts 112 - Deleted field "" + "" alanı silindi Error deleting field "". @@ -9458,7 +9493,7 @@ tüm krite src/app/components/manage/custom-fields/custom-fields.component.ts 121 - Error deleting field "". + "" alanını silerken bir hata ile karşılaşıldı. document type @@ -9490,7 +9525,7 @@ tüm krite src/app/components/manage/mail/mail.component.html 2 - Mail Settings + Posta Ayarları Mail accounts @@ -9498,7 +9533,7 @@ tüm krite src/app/components/manage/mail/mail.component.html 12 - Mail accounts + Posta Hesapları Add Account @@ -9506,7 +9541,7 @@ tüm krite src/app/components/manage/mail/mail.component.html 14 - Add Account + Hesap Ekle Connect Gmail Account @@ -9514,7 +9549,7 @@ tüm krite src/app/components/manage/mail/mail.component.html 18 - Connect Gmail Account + Gmail Hesabını Bağla Connect Outlook Account @@ -9522,7 +9557,7 @@ tüm krite src/app/components/manage/mail/mail.component.html 23 - Connect Outlook Account + Outlook Hesabını Bağla Server @@ -9530,7 +9565,7 @@ tüm krite src/app/components/manage/mail/mail.component.html 31 - Server + Sunucu Process Mail @@ -9542,7 +9577,7 @@ tüm krite src/app/components/manage/mail/mail.component.html 86 - Process Mail + Posta İşlemi No mail accounts defined. @@ -9550,7 +9585,7 @@ tüm krite src/app/components/manage/mail/mail.component.html 95 - No mail accounts defined. + Tanımlanmış bir posta hesabı yok. Mail rules @@ -9566,7 +9601,7 @@ tüm krite src/app/components/manage/mail/mail.component.html 105 - Add Rule + Kural Ekle Sort Order @@ -9574,7 +9609,7 @@ tüm krite src/app/components/manage/mail/mail.component.html 112 - Sort Order + Sıralama Disabled @@ -9586,7 +9621,7 @@ tüm krite src/app/components/manage/workflows/workflows.component.html 41 - Disabled + Devre dışı View Processed Mail @@ -9658,7 +9693,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 190 - Confirm delete mail account + Posta hesabının silinmesini onaylayın This operation will permanently delete this mail account. @@ -9910,7 +9945,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.html 67 - {VAR_PLURAL, plural, =1 {One } other { total }} + {VAR_PLURAL, plural, =1 {Bir } other { toplam }} Automatic @@ -9978,7 +10013,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.ts 342 - Permissions updated successfully + İzinler başarıyla güncellendi This operation will permanently delete all objects. @@ -9986,7 +10021,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.ts 363 - This operation will permanently delete all objects. + Bu işlem tüm nesneleri kalıcı olarak silecektir. Objects deleted successfully @@ -9994,7 +10029,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.ts 377 - Objects deleted successfully + Nesneler başarıyla silindi Error deleting objects @@ -10002,7 +10037,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.ts 383 - Error deleting objects + Nesneleri silerken bir hata ile karşılaşıldı Customize the views of your documents. @@ -10010,7 +10045,7 @@ tüm krite src/app/components/manage/saved-views/saved-views.component.html 4 - Customize the views of your documents. + Belgelerinizin görünümünü özelleştirin. Documents page size @@ -10018,7 +10053,7 @@ tüm krite src/app/components/manage/saved-views/saved-views.component.html 41 - Documents page size + Belgelerin sayfa sayısı Display as @@ -10026,7 +10061,7 @@ tüm krite src/app/components/manage/saved-views/saved-views.component.html 44 - Display as + Olarak göster Table @@ -10034,7 +10069,7 @@ tüm krite src/app/components/manage/saved-views/saved-views.component.html 46 - Table + Tablo Small Cards @@ -10042,7 +10077,7 @@ tüm krite src/app/components/manage/saved-views/saved-views.component.html 47 - Small Cards + Küçük Kartlar Large Cards @@ -10050,7 +10085,7 @@ tüm krite src/app/components/manage/saved-views/saved-views.component.html 48 - Large Cards + Büyük Kartlar No saved views defined. @@ -10074,7 +10109,7 @@ tüm krite src/app/components/manage/saved-views/saved-views.component.ts 158 - Views saved successfully. + Görünümler başarıyla kaydedildi. Error while saving views. @@ -10082,7 +10117,7 @@ tüm krite src/app/components/manage/saved-views/saved-views.component.ts 163 - Error while saving views. + Görünümleri kaydederken bir hata ile karşılaşıldı. storage path @@ -10106,7 +10141,7 @@ tüm krite src/app/components/manage/storage-path-list/storage-path-list.component.ts 62 - Do you really want to delete the storage path ""? + "" kayıt dizinini gerçekten silmek istiyor musunuz? tag @@ -10146,7 +10181,7 @@ tüm krite src/app/components/manage/workflows/workflows.component.html 9 - Add Workflow + İş Akışı Ekleyin No workflows defined. @@ -10154,7 +10189,7 @@ tüm krite src/app/components/manage/workflows/workflows.component.html 80 - No workflows defined. + Herhangi bir iş akışı tanımlanmamış. Saved workflow "". @@ -10170,7 +10205,7 @@ tüm krite src/app/components/manage/workflows/workflows.component.ts 98 - Error saving workflow. + İş akışını kaydederken bir hata ile karşılaşıldı. Confirm delete workflow @@ -10178,7 +10213,7 @@ tüm krite src/app/components/manage/workflows/workflows.component.ts 131 - Confirm delete workflow + İş akışını silmeyi onayla This operation will permanently delete this workflow. @@ -10186,7 +10221,7 @@ tüm krite src/app/components/manage/workflows/workflows.component.ts 132 - This operation will permanently delete this workflow. + Bu işlem iş akışını kalıcı olarak silecektir. Deleted workflow "". @@ -10194,7 +10229,7 @@ tüm krite src/app/components/manage/workflows/workflows.component.ts 142 - Deleted workflow "". + "" iş akışı silindi. Error deleting workflow "". @@ -10202,7 +10237,7 @@ tüm krite src/app/components/manage/workflows/workflows.component.ts 149 - Error deleting workflow "". + iş akışını silerken bir hata ile karşılaşıldı. Enabled workflow "" @@ -10210,7 +10245,7 @@ tüm krite src/app/components/manage/workflows/workflows.component.ts 162 - Enabled workflow "" + "" iş akışı aktifleştirildi Disabled workflow "" @@ -10218,7 +10253,7 @@ tüm krite src/app/components/manage/workflows/workflows.component.ts 163 - Disabled workflow "" + "" iş akışı devre dışı bırakıldı Error toggling workflow "". @@ -10226,7 +10261,7 @@ tüm krite src/app/components/manage/workflows/workflows.component.ts 170 - Error toggling workflow "". + "" açılıp yada kapanırken bir hata ile karşılaşıldı. Not Found @@ -10234,7 +10269,7 @@ tüm krite src/app/components/not-found/not-found.component.html 6 - Not Found + Bulunamadı Go to Dashboard @@ -10242,7 +10277,7 @@ tüm krite src/app/components/not-found/not-found.component.html 9 - Go to Dashboard + Kontrol Paneline git Equal to @@ -10250,7 +10285,7 @@ tüm krite src/app/data/custom-field-query.ts 24 - Equal to + Eşittir In @@ -10258,7 +10293,7 @@ tüm krite src/app/data/custom-field-query.ts 25 - In + İçinde Is null @@ -10266,7 +10301,7 @@ tüm krite src/app/data/custom-field-query.ts 26 - Is null + Null'dur Exists @@ -10274,7 +10309,7 @@ tüm krite src/app/data/custom-field-query.ts 27 - Exists + Mevcut Contains @@ -10282,7 +10317,7 @@ tüm krite src/app/data/custom-field-query.ts 28 - Contains + İçeren Contains (case-insensitive) @@ -10290,7 +10325,7 @@ tüm krite src/app/data/custom-field-query.ts 29 - Contains (case-insensitive) + İçeren (Büyük-küçük harf duyarsız) Greater than @@ -10298,7 +10333,7 @@ tüm krite src/app/data/custom-field-query.ts 30 - Greater than + Den büyük Greater than or equal to @@ -10306,7 +10341,7 @@ tüm krite src/app/data/custom-field-query.ts 31 - Greater than or equal to + Büyüktür ya da eşittir Less than @@ -10314,7 +10349,7 @@ tüm krite src/app/data/custom-field-query.ts 32 - Less than + Den küçük Less than or equal to @@ -10322,7 +10357,7 @@ tüm krite src/app/data/custom-field-query.ts 33 - Less than or equal to + Küçüktür veya eşittir Range @@ -10330,7 +10365,7 @@ tüm krite src/app/data/custom-field-query.ts 34 - Range + Aralık Boolean @@ -10338,7 +10373,7 @@ tüm krite src/app/data/custom-field.ts 19 - Boolean + Evet/Hayır Date @@ -10346,7 +10381,7 @@ tüm krite src/app/data/custom-field.ts 23 - Date + Tarih Integer @@ -10354,7 +10389,7 @@ tüm krite src/app/data/custom-field.ts 27 - Integer + Tam sayı Number @@ -10362,7 +10397,7 @@ tüm krite src/app/data/custom-field.ts 31 - Number + Sayı Monetary @@ -10370,7 +10405,7 @@ tüm krite src/app/data/custom-field.ts 35 - Monetary + Parasal Text @@ -10378,7 +10413,7 @@ tüm krite src/app/data/custom-field.ts 39 - Text + Metin Url @@ -10386,7 +10421,7 @@ tüm krite src/app/data/custom-field.ts 43 - Url + Bağlantı Document Link @@ -10394,7 +10429,7 @@ tüm krite src/app/data/custom-field.ts 47 - Document Link + Belge Bağlantısı Long Text @@ -10402,7 +10437,7 @@ tüm krite src/app/data/custom-field.ts 55 - Long Text + Uzun Metin Search score @@ -10507,7 +10542,7 @@ tüm krite src/app/data/matching-model.ts 46 - None: Disable matching + Yok: Eşleştirmeyi devre dışı bırak General Settings @@ -10515,7 +10550,7 @@ tüm krite src/app/data/paperless-config.ts 50 - General Settings + Genel Ayarlar OCR Settings @@ -10523,7 +10558,7 @@ tüm krite src/app/data/paperless-config.ts 51 - OCR Settings + OCR Ayarları Barcode Settings @@ -10531,7 +10566,7 @@ tüm krite src/app/data/paperless-config.ts 52 - Barcode Settings + Barkod Ayarları Output Type @@ -11259,7 +11294,7 @@ tüm krite src/app/services/settings.service.ts 603 - Successfully completed one-time migratration of settings to the database! + Ayarların veritabanına tek seferlik taşıma işlemi başarıyla tamamlandı! Unable to migrate settings to the database, please try saving manually. @@ -11267,7 +11302,7 @@ tüm krite src/app/services/settings.service.ts 604 - Unable to migrate settings to the database, please try saving manually. + Ayarları veritabanına taşıyamıyoruz, lütfen manuel olarak kaydetmeyi deneyin. You can restart the tour from the settings page. @@ -11275,7 +11310,7 @@ tüm krite src/app/services/settings.service.ts 677 - You can restart the tour from the settings page. + Ayarlar sayfasından turu yeniden başlatabilirsiniz. Connecting... @@ -11323,7 +11358,7 @@ tüm krite src/app/services/websocket-status.service.ts 25 - Document already exists. Note: existing document is in the trash. + Belge zaten mevcut. Not: Mevcut belge çöp kutusunda. Document with ASN already exists. @@ -11331,7 +11366,7 @@ tüm krite src/app/services/websocket-status.service.ts 26 - Document with ASN already exists. + ASN içeren belge zaten mevcut. Document with ASN already exists. Note: existing document is in the trash. @@ -11339,7 +11374,7 @@ tüm krite src/app/services/websocket-status.service.ts 27 - Document with ASN already exists. Note: existing document is in the trash. + ASN içeren belge zaten mevcut. Not: mevcut belge çöp kutusunda. File not found. diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf index cdf862584..6af11586c 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Закрити @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 Попередній @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 Наступний @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Попередній місяць @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 Наступний місяць @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ГГ @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Закрити @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Оберіть місяць @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Години @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 ММ @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Оберіть рік @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Хвилини @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Перший @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Збільшити години @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Попередній @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Зменшити години @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Наступний @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Збільшити хвилини @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Останній @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Зменшити хвилини @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 СС @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Секунди @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Збільшити секунди @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 Зменшити секунди @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ Завантаження... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Розширений пошук @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ Відносні дати - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - зараз - From @@ -3882,11 +3878,19 @@ Додано + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + зараз + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Протягом одного тижня @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Протягом одного місяця @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Протягом трьох місяців @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Протягом одного року @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Цього року @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Цього місяця @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ Вчора + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned Не призначено @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 Відкрити фільтр @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Власні поля @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Назва та вміст @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Тип файлу @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Більше схожих @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 дорівнює @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 не заповнено @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 заповнено @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 більше ніж @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 менше ніж @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Correspondent: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Без кореспондента @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Document type: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Без типу документа @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Storage path: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Без шляху зберігання @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Tag: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Без жодного тегу @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Custom fields query @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Назва: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 АСН: @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Власник: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Власник не в: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Без власника diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf index aba0a20b8..621962468 100644 --- a/src-ui/src/locale/messages.vi_VN.xlf +++ b/src-ui/src/locale/messages.vi_VN.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 Đóng @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -27,7 +27,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 @@ -37,7 +37,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 @@ -47,11 +47,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 @@ -61,11 +61,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 @@ -75,7 +75,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -85,7 +85,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -95,11 +95,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -109,7 +109,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -119,7 +119,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -129,7 +129,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -139,7 +139,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -149,7 +149,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -159,11 +159,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -173,7 +173,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -183,7 +183,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -193,7 +193,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -203,7 +203,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -213,7 +213,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -223,7 +223,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -233,7 +233,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -243,7 +243,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -253,7 +253,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -263,7 +263,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -273,7 +273,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -283,7 +283,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -293,7 +293,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -303,7 +303,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -315,7 +315,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -324,7 +324,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -930,7 +930,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -1032,6 +1032,14 @@ Đang tải... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1505,7 +1513,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 Tìm kiếm nâng cao @@ -4261,7 +4269,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -4445,20 +4453,6 @@ Ngày tương đối - - - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - - hiện tại @@ -4513,13 +4507,23 @@ Đã thêm + + + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + + hiện tại Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 Trong vòng 1 tuần @@ -4529,7 +4533,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 Trong vòng 1 tháng @@ -4539,7 +4543,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 Trong vòng 3 tháng @@ -4549,7 +4553,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 Trong vòng 1 năm @@ -4559,7 +4563,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 Năm nay @@ -4569,7 +4573,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 Tháng này @@ -4579,7 +4583,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -4589,6 +4593,38 @@ Hôm qua + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -6915,7 +6951,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned @@ -6926,7 +6962,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 OpenFilter @@ -8848,7 +8884,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -9590,7 +9626,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 Trường tùy chỉnh @@ -10416,7 +10452,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -10684,7 +10720,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 Tiêu đề & Nội dung @@ -10694,7 +10730,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 Loại tệp @@ -10704,7 +10740,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 Giống như @@ -10714,7 +10750,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 bằng nhau @@ -10724,7 +10760,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 trống rỗng @@ -10734,7 +10770,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 không trống @@ -10744,7 +10780,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 lớn hơn @@ -10754,7 +10790,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 ít hơn @@ -10764,7 +10800,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 Phóng viên: @@ -10774,7 +10810,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 Không có phóng viên @@ -10784,7 +10820,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 Loại tài liệu: @@ -10794,7 +10830,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 Không có loại tài liệu @@ -10804,7 +10840,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 Đường dẫn lưu trữ: @@ -10814,7 +10850,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 Không có đường dẫn lưu trữ @@ -10824,7 +10860,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 Nhãn: @@ -10834,7 +10870,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 Mà không có bất kỳ thẻ @@ -10844,7 +10880,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 Truy vấn trường tùy chỉnh @@ -10854,7 +10890,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 Tiêu đề: @@ -10864,7 +10900,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 Asn: @@ -10874,7 +10910,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 Người sở hữu: @@ -10884,7 +10920,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 Chủ sở hữu không ở: @@ -10894,7 +10930,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 Mà không có chủ sở hữu diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index 5db259e13..dd00ffadb 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 关闭 @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 上一个 @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 下一个 @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 上个月 @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 下个月 @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 关闭 @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 选择月份 @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 小时 @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 选择年份 @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 分钟 @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 第一页 @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 增加小时 @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 上一页 @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 减少小时 @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 下一页 @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 增加分钟 @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 最后一页 @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 减少分钟 @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 增加秒 @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 减少秒 @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ 加载中... + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 高级搜索 @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ 相对日期 - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - 现在 - From @@ -3882,11 +3878,19 @@ 已添加 + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + 现在 + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 1 周内 @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 1个月内 @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 3 个月内 @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 1 年内 @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 今年 @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 本月 @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ 昨天 + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + Previous week + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + Previous month + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + Previous quarter + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + Previous year + Matching algorithm @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned 未分配 @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 开启过滤 @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 自定义字段 @@ -8817,7 +8853,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9037,7 +9073,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 标题 & 内容 @@ -9045,7 +9081,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 文件类型 @@ -9053,7 +9089,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 更多 @@ -9061,7 +9097,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 等于 @@ -9069,7 +9105,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 为空 @@ -9077,7 +9113,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 不为空 @@ -9085,7 +9121,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 高于 @@ -9093,7 +9129,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 低于 @@ -9101,7 +9137,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 联系人: @@ -9109,7 +9145,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 没有联系人 @@ -9117,7 +9153,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 文档类型: @@ -9125,7 +9161,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 没有文档类型 @@ -9133,7 +9169,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 存储路径: @@ -9141,7 +9177,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 没有存储路径 @@ -9149,7 +9185,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 标签: @@ -9157,7 +9193,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 没有任何标签 @@ -9165,7 +9201,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 自定义字段查询 @@ -9173,7 +9209,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 标题: @@ -9181,7 +9217,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 ASN: @@ -9189,7 +9225,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 所有者: @@ -9197,7 +9233,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 所有者不在: @@ -9205,7 +9241,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 没有所有者 diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index 76738304d..20c370188 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts 50 關閉 @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 157,159 上一個 @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts 198 下一個 @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 上個月 @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts 112 下個月 @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 關閉 @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 選取月份 @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 小時 @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 選擇年份 @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 分鐘 @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 第一頁 @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 增加小時 @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 上一頁 @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 減少小時 @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 下一頁 @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 增加分鐘 @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 最後一頁 @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 減少分鐘 @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 增加秒數 @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 減少秒數 @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts 41,42 @@ -764,7 +764,7 @@ src/app/components/admin/logs/logs.component.html 17 - lines + Auto refresh @@ -786,7 +786,7 @@ src/app/components/admin/logs/logs.component.html - 53 + 48 src/app/components/admin/tasks/tasks.component.html @@ -886,6 +886,14 @@ 讀取中⋯ + + Jump to bottom + + src/app/components/admin/logs/logs.component.html + 60 + + Jump to bottom + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -1274,7 +1282,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 192 + 208 進階搜尋 @@ -1668,7 +1676,7 @@ src/app/components/manage/saved-views/saved-views.component.html 73 - 取消選取 + 取消 Use system language @@ -3658,7 +3666,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 106 + 111 src/app/components/common/input/date/date.component.html @@ -3822,18 +3830,6 @@ 相對日期 - - now - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 29 - - - src/app/components/common/dates-dropdown/dates-dropdown.component.html - 105 - - 現在 - From @@ -3882,11 +3878,19 @@ 新增日期 + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 169 + + 現在 + Within 1 week src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 76 + 81 1 週內 @@ -3894,7 +3898,7 @@ Within 1 month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 81 + 86 1 個月內 @@ -3902,7 +3906,7 @@ Within 3 months src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 86 + 91 3 個月內 @@ -3910,7 +3914,7 @@ Within 1 year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 91 + 96 1 年內 @@ -3918,7 +3922,7 @@ This year src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 96 + 101 今年 @@ -3926,7 +3930,7 @@ This month src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 101 + 106 本月 @@ -3934,7 +3938,7 @@ Yesterday src/app/components/common/dates-dropdown/dates-dropdown.component.ts - 111 + 116 src/app/pipes/custom-date.pipe.ts @@ -3942,6 +3946,38 @@ 昨天 + + Previous week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 121 + + 上週 + + + Previous month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 135 + + 上個月 + + + Previous quarter + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 141 + + 上一季 + + + Previous year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 155 + + 去年 + Matching algorithm @@ -5652,7 +5688,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 210 - 標籤包含 + 標籤符合 Does not have these tags @@ -5882,7 +5918,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 90 + 95 Filter drop down element to filter for documents with no correspondent/type/tag assigned 未被指派的 @@ -5891,7 +5927,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 748 + 767 開啟 篩選器 @@ -7392,7 +7428,7 @@ src/app/components/document-list/document-list.component.html 27 - 頁面 + 目前頁面 of @@ -7506,7 +7542,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 179 + 195 src/app/data/document.ts @@ -8130,7 +8166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 187 + 203 自訂欄位 @@ -8680,7 +8716,7 @@ src/app/components/document-list/document-list.component.ts 315 - 選取頁面 + 選取目前頁面 Select all @@ -8818,7 +8854,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts - 184 + 200 src/app/data/document.ts @@ -9038,7 +9074,7 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 182 + 198 標題與內容 @@ -9046,7 +9082,7 @@ File type src/app/components/document-list/filter-editor/filter-editor.component.ts - 189 + 205 檔案類型 @@ -9054,7 +9090,7 @@ More like src/app/components/document-list/filter-editor/filter-editor.component.ts - 198 + 214 相似於 @@ -9062,7 +9098,7 @@ equals src/app/components/document-list/filter-editor/filter-editor.component.ts - 204 + 220 等於 @@ -9070,7 +9106,7 @@ is empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 208 + 224 為空白 @@ -9078,7 +9114,7 @@ is not empty src/app/components/document-list/filter-editor/filter-editor.component.ts - 212 + 228 不為空白 @@ -9086,7 +9122,7 @@ greater than src/app/components/document-list/filter-editor/filter-editor.component.ts - 216 + 232 大於 @@ -9094,7 +9130,7 @@ less than src/app/components/document-list/filter-editor/filter-editor.component.ts - 220 + 236 小於 @@ -9102,7 +9138,7 @@ Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 261,265 + 277,281 關聯方: @@ -9110,7 +9146,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 267 + 283 沒有關聯方 @@ -9118,7 +9154,7 @@ Document type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 273,277 + 289,293 文件類型: @@ -9126,7 +9162,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 279 + 295 沒有文件類型 @@ -9134,7 +9170,7 @@ Storage path: src/app/components/document-list/filter-editor/filter-editor.component.ts - 285,289 + 301,305 儲存路徑: @@ -9142,7 +9178,7 @@ Without storage path src/app/components/document-list/filter-editor/filter-editor.component.ts - 291 + 307 沒有儲存路徑 @@ -9150,7 +9186,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 295,297 + 311,313 標籤: @@ -9158,7 +9194,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 301 + 317 沒有任何標籤 @@ -9166,7 +9202,7 @@ Custom fields query src/app/components/document-list/filter-editor/filter-editor.component.ts - 305 + 321 自訂欄位查詢 @@ -9174,7 +9210,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 308 + 324 標題: @@ -9182,7 +9218,7 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 311 + 327 封存序號 (ANS): @@ -9190,7 +9226,7 @@ Owner: src/app/components/document-list/filter-editor/filter-editor.component.ts - 314 + 330 擁有者: @@ -9198,7 +9234,7 @@ Owner not in: src/app/components/document-list/filter-editor/filter-editor.component.ts - 317 + 333 擁有者不包含: @@ -9206,7 +9242,7 @@ Without an owner src/app/components/document-list/filter-editor/filter-editor.component.ts - 320 + 336 沒有擁有者 diff --git a/src/locale/ar_AR/LC_MESSAGES/django.po b/src/locale/ar_AR/LC_MESSAGES/django.po index 401718cfd..cdcc47657 100644 --- a/src/locale/ar_AR/LC_MESSAGES/django.po +++ b/src/locale/ar_AR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-14 16:09+0000\n" -"PO-Revision-Date: 2025-11-14 16:11\n" +"PO-Revision-Date: 2025-11-21 23:54\n" "Last-Translator: \n" "Language-Team: Arabic\n" "Language: ar_SA\n" @@ -31,7 +31,7 @@ msgstr "" #: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." -msgstr "" +msgstr "قائمة عبارة خاطئة." #: documents/filters.py:445 msgid "Invalid logical operator {op!r}" @@ -1062,7 +1062,7 @@ msgstr "تعيين هذا المالك" #: documents/models.py:1353 msgid "grant view permissions to these users" -msgstr "منح أذونات العرض إلى هؤلاء المستخدمين" +msgstr "منح صلاحيات العرض إلى هؤلاء المستخدمين" #: documents/models.py:1360 msgid "grant view permissions to these groups" @@ -1130,11 +1130,11 @@ msgstr "إزالة جميع المالكين" #: documents/models.py:1458 msgid "remove view permissions for these users" -msgstr "سحب أذونات العرض من هؤلاء المستخدمين" +msgstr "سحب صلاحيات العرض من هؤلاء المستخدمين" #: documents/models.py:1465 msgid "remove view permissions for these groups" -msgstr "سحب أذونات العرض من هذه المجموعات" +msgstr "سحب صلاحيات العرض من هذه المجموعات" #: documents/models.py:1472 msgid "remove change permissions for these users" diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po index a88c82430..d4b6af16e 100644 --- a/src/locale/ca_ES/LC_MESSAGES/django.po +++ b/src/locale/ca_ES/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-14 16:09+0000\n" -"PO-Revision-Date: 2025-11-14 16:11\n" +"PO-Revision-Date: 2025-11-20 00:35\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Language: ca_ES\n" diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index 6b1c27c7b..82a6946e7 100644 --- a/src/locale/de_DE/LC_MESSAGES/django.po +++ b/src/locale/de_DE/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-14 16:09+0000\n" -"PO-Revision-Date: 2025-11-14 16:11\n" +"PO-Revision-Date: 2025-11-22 12:12\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -63,7 +63,7 @@ msgstr "Eigentümer" #: documents/models.py:55 documents/models.py:983 msgid "None" -msgstr "Keiner" +msgstr "Keine" #: documents/models.py:56 documents/models.py:984 msgid "Any word" @@ -862,7 +862,7 @@ msgstr "hat alle diese Tags" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "hat diese Tags nicht" +msgstr "hat diese Tags nicht)" #: documents/models.py:1087 msgid "has this document type" @@ -890,11 +890,11 @@ msgstr "hat diese Speicherpfade nicht" #: documents/models.py:1128 msgid "filter custom field query" -msgstr "" +msgstr "Filtere nach benutzerdefiniertem Feld" #: documents/models.py:1131 msgid "JSON-encoded custom field query expression." -msgstr "JSON-kodierte benutzerdefinierter Feldabfrageausdruck." +msgstr "JSON-kodierte Abfrage eines benutzerdefinierten Felds." #: documents/models.py:1135 msgid "schedule offset days" @@ -1225,7 +1225,7 @@ msgstr "Dateityp %(type)s nicht unterstützt" #: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" -msgstr "Benutzerdefinierte Feld ID muss eine Ganzzahl sein: %(id)s" +msgstr "Feld-ID eines benutzerdefinierten Felds muss eine Ganzzahl sein: %(id)s" #: documents/serialisers.py:1856 #, python-format diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po index 83412ea93..be6781694 100644 --- a/src/locale/tr_TR/LC_MESSAGES/django.po +++ b/src/locale/tr_TR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-14 16:09+0000\n" -"PO-Revision-Date: 2025-11-14 16:11\n" +"PO-Revision-Date: 2025-11-21 23:54\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -136,11 +136,11 @@ msgstr "etiketler" #: documents/models.py:123 msgid "Cannot set itself as parent." -msgstr "" +msgstr "Kendinizi bir üst düğüm olarak seçemezsiniz." #: documents/models.py:125 msgid "Cannot set parent to a descendant." -msgstr "" +msgstr "Bir üst düğüm alt düğüm olarak seçilemez." #: documents/models.py:142 documents/models.py:190 msgid "document type" @@ -758,7 +758,7 @@ msgstr "Seç" #: documents/models.py:795 msgid "Long Text" -msgstr "" +msgstr "Uzun Metin" #: documents/models.py:807 msgid "data type" @@ -858,11 +858,11 @@ msgstr "bu etiket(ler) e sahiptir" #: documents/models.py:1072 msgid "has all of these tag(s)" -msgstr "" +msgstr "bu etiket veya etiketlerine sahip" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "" +msgstr "bu etiket veya etiketlerine sahip değil" #: documents/models.py:1087 msgid "has this document type" @@ -870,7 +870,7 @@ msgstr "bu doküman tipindedir" #: documents/models.py:1094 msgid "does not have these document type(s)" -msgstr "" +msgstr "bu belge tür veya türlerine sahip değil" #: documents/models.py:1102 msgid "has this correspondent" @@ -878,23 +878,23 @@ msgstr "bu muhatap var" #: documents/models.py:1109 msgid "does not have these correspondent(s)" -msgstr "" +msgstr "bu muhatablara sahip değil" #: documents/models.py:1117 msgid "has this storage path" -msgstr "" +msgstr "bu depolama yoluna sahip" #: documents/models.py:1124 msgid "does not have these storage path(s)" -msgstr "" +msgstr "bu depolama dizin veya dizinleri mevcut değil" #: documents/models.py:1128 msgid "filter custom field query" -msgstr "" +msgstr "özel alanlara göre filtrele" #: documents/models.py:1131 msgid "JSON-encoded custom field query expression." -msgstr "" +msgstr "JSON olarak verilmiş özel alan sorgu ifadesi." #: documents/models.py:1135 msgid "schedule offset days" @@ -1038,7 +1038,7 @@ msgstr "başlık ata" #: documents/models.py:1302 msgid "Assign a document title, must be a Jinja2 template, see documentation." -msgstr "" +msgstr "Dökuman bașlıkları, Jinja2 taslağı olmalıdır, bakınız." #: documents/models.py:1310 paperless_mail/models.py:274 msgid "assign this tag" @@ -1225,20 +1225,20 @@ msgstr "Dosya türü %(type)s desteklenmiyor" #: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" -msgstr "" +msgstr "%(id)s özel alan numarası tam sayı olmalıdır" #: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" -msgstr "" +msgstr "%(id)s numaralı özel alan mevcut değil" #: documents/serialisers.py:1873 documents/serialisers.py:1883 msgid "Custom fields must be a list of integers or an object mapping ids to values." -msgstr "" +msgstr "Özel alanlar bir tam sayı olarak veya bir nesne haritası numaraları olmalıdır." #: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." -msgstr "" +msgstr "Bazı õzel alan numaraları mevcut değil yada iki kez tanımlanmıș." #: documents/serialisers.py:1993 msgid "Invalid variable detected." diff --git a/src/locale/zh_TW/LC_MESSAGES/django.po b/src/locale/zh_TW/LC_MESSAGES/django.po index 596bd8223..d3b895dde 100644 --- a/src/locale/zh_TW/LC_MESSAGES/django.po +++ b/src/locale/zh_TW/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-14 16:09+0000\n" -"PO-Revision-Date: 2025-11-14 16:11\n" +"PO-Revision-Date: 2025-11-20 12:15\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Language: zh_TW\n" From 76bb6d3422e762fc5118a35441e1c0d1a4fe9942 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 22 Nov 2025 13:18:06 -0800 Subject: [PATCH 111/133] Bump version to 2.20.0 --- pyproject.toml | 2 +- src-ui/package.json | 2 +- src-ui/src/environments/environment.prod.ts | 2 +- src/paperless/version.py | 2 +- uv.lock | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e90da697d..f4d279f69 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "paperless-ngx" -version = "2.19.6" +version = "2.20.0" description = "A community-supported supercharged document management system: scan, index and archive all your physical documents" readme = "README.md" requires-python = ">=3.10" diff --git a/src-ui/package.json b/src-ui/package.json index b64821855..345c06dd5 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -1,6 +1,6 @@ { "name": "paperless-ngx-ui", - "version": "2.19.6", + "version": "2.20.0", "scripts": { "preinstall": "npx only-allow pnpm", "ng": "ng", diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index b81beb1c5..cb3985a5e 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -6,7 +6,7 @@ export const environment = { apiVersion: '9', // match src/paperless/settings.py appTitle: 'Paperless-ngx', tag: 'prod', - version: '2.19.6', + version: '2.20.0', webSocketHost: window.location.host, webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:', webSocketBaseUrl: base_url.pathname + 'ws/', diff --git a/src/paperless/version.py b/src/paperless/version.py index 5657b929a..cc995b1b0 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1,6 +1,6 @@ from typing import Final -__version__: Final[tuple[int, int, int]] = (2, 19, 6) +__version__: Final[tuple[int, int, int]] = (2, 20, 0) # Version string like X.Y.Z __full_version_str__: Final[str] = ".".join(map(str, __version__)) # Version string like X.Y diff --git a/uv.lock b/uv.lock index 9734787ce..0dcf26fde 100644 --- a/uv.lock +++ b/uv.lock @@ -2115,7 +2115,7 @@ wheels = [ [[package]] name = "paperless-ngx" -version = "2.19.6" +version = "2.20.0" source = { virtual = "." } dependencies = [ { name = "babel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, From 4c2cc373f249ad219e12d3597fb3b769976b144f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 22 Nov 2025 14:00:59 -0800 Subject: [PATCH 112/133] Documentation: Add v2.20.0 changelog (#11433) --- docs/changelog.md | 75 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/docs/changelog.md b/docs/changelog.md index 7abea13d4..3b1578c81 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,80 @@ # Changelog +## paperless-ngx 2.20.0 + +### Notable Changes + +- Feature: Upgrade underlying Docker image to Trixie [@stumpylog](https://github.com/stumpylog) ([#10562](https://github.com/paperless-ngx/paperless-ngx/pull/10562)) + +### Features / Enhancements + +- Feature: Upgrade underlying Docker image to Trixie [@stumpylog](https://github.com/stumpylog) ([#10562](https://github.com/paperless-ngx/paperless-ngx/pull/10562)) +- Fixhancement: more log viewer improvements [@shamoon](https://github.com/shamoon) ([#11426](https://github.com/paperless-ngx/paperless-ngx/pull/11426)) +- Performance: Replace duplicated static files with symlinks [@stumpylog](https://github.com/stumpylog) ([#11418](https://github.com/paperless-ngx/paperless-ngx/pull/11418)) +- Enhancement: add more relative dates, support modified [@shamoon](https://github.com/shamoon) ([#11411](https://github.com/paperless-ngx/paperless-ngx/pull/11411)) +- Performance: make move files after select custom field change async [@shamoon](https://github.com/shamoon) ([#11391](https://github.com/paperless-ngx/paperless-ngx/pull/11391)) +- Enhancement: Use a better check for the MariaDB server to be ready [@stumpylog](https://github.com/stumpylog) ([#11396](https://github.com/paperless-ngx/paperless-ngx/pull/11396)) +- Enhancement: speed-up docker container startup [@flrgh](https://github.com/flrgh) ([#11134](https://github.com/paperless-ngx/paperless-ngx/pull/11134)) + +### Bug Fixes + +- Fix: prevent focus loss from change detection in cf query dropdown [@shamoon](https://github.com/shamoon) ([#11409](https://github.com/paperless-ngx/paperless-ngx/pull/11409)) +- Fix: sort editing filterable dropdowns sooner [@shamoon](https://github.com/shamoon) ([#11404](https://github.com/paperless-ngx/paperless-ngx/pull/11404)) +- Fix: support for custom field ordering w advanced search [@shamoon](https://github.com/shamoon) ([#11383](https://github.com/paperless-ngx/paperless-ngx/pull/11383)) + +### Maintenance + +- Chore(deps): Bump the actions group with 7 updates @[dependabot[bot]](https://github.com/apps/dependabot) ([#11259](https://github.com/paperless-ngx/paperless-ngx/pull/11259)) + +### Dependencies + +
+16 changes + +- Chore: Upgrades psycopg to 3.2.12 [@stumpylog](https://github.com/stumpylog) ([#11420](https://github.com/paperless-ngx/paperless-ngx/pull/11420)) +- Chore(deps-dev): Bump glob from 10.4.1 to 10.5.0 in /src/paperless_mail/templates @[dependabot[bot]](https://github.com/apps/dependabot) ([#11413](https://github.com/paperless-ngx/paperless-ngx/pull/11413)) +- docker-compose(deps): bump gotenberg/gotenberg from 8.24 to 8.25 in /docker/compose @[dependabot[bot]](https://github.com/apps/dependabot) ([#11393](https://github.com/paperless-ngx/paperless-ngx/pull/11393)) +- Chore(deps): Bump the frontend-angular-dependencies group in /src-ui with 21 updates @[dependabot[bot]](https://github.com/apps/dependabot) ([#11260](https://github.com/paperless-ngx/paperless-ngx/pull/11260)) +- Chore(deps-dev): Bump @playwright/test from 1.55.1 to 1.56.1 in /src-ui @[dependabot[bot]](https://github.com/apps/dependabot) ([#11263](https://github.com/paperless-ngx/paperless-ngx/pull/11263)) +- Chore(deps-dev): Bump webpack from 5.102.0 to 5.102.1 in /src-ui @[dependabot[bot]](https://github.com/apps/dependabot) ([#11264](https://github.com/paperless-ngx/paperless-ngx/pull/11264)) +- Chore(deps-dev): Bump the frontend-eslint-dependencies group in /src-ui with 4 updates @[dependabot[bot]](https://github.com/apps/dependabot) ([#11262](https://github.com/paperless-ngx/paperless-ngx/pull/11262)) +- Chore(deps-dev): Bump jest-preset-angular from 15.0.2 to 15.0.3 in /src-ui in the frontend-jest-dependencies group @[dependabot[bot]](https://github.com/apps/dependabot) ([#11261](https://github.com/paperless-ngx/paperless-ngx/pull/11261)) +- Chore(deps-dev): Bump @types/node from 24.6.1 to 24.9.2 in /src-ui @[dependabot[bot]](https://github.com/apps/dependabot) ([#11265](https://github.com/paperless-ngx/paperless-ngx/pull/11265)) +- Chore(deps): Bump the small-changes group across 1 directory with 11 updates @[dependabot[bot]](https://github.com/apps/dependabot) ([#11337](https://github.com/paperless-ngx/paperless-ngx/pull/11337)) +- Chore(deps): Bump django-auditlog from 3.2.1 to 3.3.0 @[dependabot[bot]](https://github.com/apps/dependabot) ([#11021](https://github.com/paperless-ngx/paperless-ngx/pull/11021)) +- Chore(deps): Bump the actions group with 7 updates @[dependabot[bot]](https://github.com/apps/dependabot) ([#11259](https://github.com/paperless-ngx/paperless-ngx/pull/11259)) +- Chore(deps): Bump drf-spectacular-sidecar from 2025.9.1 to 2025.10.1 @[dependabot[bot]](https://github.com/apps/dependabot) ([#11019](https://github.com/paperless-ngx/paperless-ngx/pull/11019)) +- Chore(deps): Bump django-filter from 25.1 to 25.2 @[dependabot[bot]](https://github.com/apps/dependabot) ([#11020](https://github.com/paperless-ngx/paperless-ngx/pull/11020)) +- Chore(deps): Update django-allauth[mfa,socialaccount] requirement from ~=65.4.0 to ~=65.12.1 @[dependabot[bot]](https://github.com/apps/dependabot) ([#11198](https://github.com/paperless-ngx/paperless-ngx/pull/11198)) +- docker(deps): bump astral-sh/uv from 0.9.9-python3.12-bookworm-slim to 0.9.10-python3.12-bookworm-slim @[dependabot[bot]](https://github.com/apps/dependabot) ([#11394](https://github.com/paperless-ngx/paperless-ngx/pull/11394)) +
+ +### All App Changes + +
+19 changes + +- Fixhancement: more log viewer improvements [@shamoon](https://github.com/shamoon) ([#11426](https://github.com/paperless-ngx/paperless-ngx/pull/11426)) +- Chore: Upgrades psycopg to 3.2.12 [@stumpylog](https://github.com/stumpylog) ([#11420](https://github.com/paperless-ngx/paperless-ngx/pull/11420)) +- Enhancement: add more relative dates, support modified [@shamoon](https://github.com/shamoon) ([#11411](https://github.com/paperless-ngx/paperless-ngx/pull/11411)) +- Chore(deps-dev): Bump glob from 10.4.1 to 10.5.0 in /src/paperless_mail/templates @[dependabot[bot]](https://github.com/apps/dependabot) ([#11413](https://github.com/paperless-ngx/paperless-ngx/pull/11413)) +- Performance: make move files after select custom field change async [@shamoon](https://github.com/shamoon) ([#11391](https://github.com/paperless-ngx/paperless-ngx/pull/11391)) +- Fix: prevent focus loss from change detection in cf query dropdown [@shamoon](https://github.com/shamoon) ([#11409](https://github.com/paperless-ngx/paperless-ngx/pull/11409)) +- Fix: sort editing filterable dropdowns sooner [@shamoon](https://github.com/shamoon) ([#11404](https://github.com/paperless-ngx/paperless-ngx/pull/11404)) +- Chore(deps): Bump the frontend-angular-dependencies group in /src-ui with 21 updates @[dependabot[bot]](https://github.com/apps/dependabot) ([#11260](https://github.com/paperless-ngx/paperless-ngx/pull/11260)) +- Chore(deps-dev): Bump @playwright/test from 1.55.1 to 1.56.1 in /src-ui @[dependabot[bot]](https://github.com/apps/dependabot) ([#11263](https://github.com/paperless-ngx/paperless-ngx/pull/11263)) +- Chore(deps-dev): Bump webpack from 5.102.0 to 5.102.1 in /src-ui @[dependabot[bot]](https://github.com/apps/dependabot) ([#11264](https://github.com/paperless-ngx/paperless-ngx/pull/11264)) +- Chore(deps-dev): Bump the frontend-eslint-dependencies group in /src-ui with 4 updates @[dependabot[bot]](https://github.com/apps/dependabot) ([#11262](https://github.com/paperless-ngx/paperless-ngx/pull/11262)) +- Chore(deps-dev): Bump jest-preset-angular from 15.0.2 to 15.0.3 in /src-ui in the frontend-jest-dependencies group @[dependabot[bot]](https://github.com/apps/dependabot) ([#11261](https://github.com/paperless-ngx/paperless-ngx/pull/11261)) +- Chore(deps-dev): Bump @types/node from 24.6.1 to 24.9.2 in /src-ui @[dependabot[bot]](https://github.com/apps/dependabot) ([#11265](https://github.com/paperless-ngx/paperless-ngx/pull/11265)) +- Chore(deps): Bump the small-changes group across 1 directory with 11 updates @[dependabot[bot]](https://github.com/apps/dependabot) ([#11337](https://github.com/paperless-ngx/paperless-ngx/pull/11337)) +- Chore(deps): Bump django-auditlog from 3.2.1 to 3.3.0 @[dependabot[bot]](https://github.com/apps/dependabot) ([#11021](https://github.com/paperless-ngx/paperless-ngx/pull/11021)) +- Chore(deps): Bump drf-spectacular-sidecar from 2025.9.1 to 2025.10.1 @[dependabot[bot]](https://github.com/apps/dependabot) ([#11019](https://github.com/paperless-ngx/paperless-ngx/pull/11019)) +- Chore(deps): Bump django-filter from 25.1 to 25.2 @[dependabot[bot]](https://github.com/apps/dependabot) ([#11020](https://github.com/paperless-ngx/paperless-ngx/pull/11020)) +- Chore(deps): Update django-allauth[mfa,socialaccount] requirement from ~=65.4.0 to ~=65.12.1 @[dependabot[bot]](https://github.com/apps/dependabot) ([#11198](https://github.com/paperless-ngx/paperless-ngx/pull/11198)) +- Fix: support for custom field ordering w advanced search [@shamoon](https://github.com/shamoon) ([#11383](https://github.com/paperless-ngx/paperless-ngx/pull/11383)) +
+ ## paperless-ngx 2.19.6 ### Bug Fixes From ffc56bddda7592fb437200e9dfcd1f08f70ddac0 Mon Sep 17 00:00:00 2001 From: Daniel Rheinbay Date: Mon, 24 Nov 2025 00:03:35 +0100 Subject: [PATCH 113/133] fix: Add user parameter to MariaDB connection check (#11441) --- docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run index 8ec900212..170b2ed61 100755 --- a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run +++ b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run @@ -50,8 +50,9 @@ wait_for_mariadb() { local -r host="${PAPERLESS_DBHOST:-localhost}" local -r port="${PAPERLESS_DBPORT:-3306}" + local -r user="${PAPERLESS_DBUSER:-paperless}" - while ! mariadb-admin --host="$host" --port="$port" ping --silent >/dev/null 2>&1; do + while ! mariadb-admin --host="${host}" --port="${port}" --user="${user}" ping --silent >/dev/null 2>&1; do delay_next_attempt done echo "${LOG_PREFIX} Connected to MariaDB" From a76731ca898ed4aada919f729ab9ef81f7ed9861 Mon Sep 17 00:00:00 2001 From: Cary Kempston Date: Tue, 25 Nov 2025 07:18:56 -0800 Subject: [PATCH 114/133] Development: sync Dockerfile changes to .devcontainer/Dockerfile (#11463) --- .devcontainer/Dockerfile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index ba7b192d3..b0185a029 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -8,14 +8,17 @@ ARG DEBIAN_FRONTEND=noninteractive ARG TARGETARCH # Can be workflow provided, defaults set for manual building -ARG JBIG2ENC_VERSION=0.29 +ARG JBIG2ENC_VERSION=0.30 # Set Python environment variables ENV PYTHONDONTWRITEBYTECODE=1 \ PYTHONUNBUFFERED=1 \ # Ignore warning from Whitenoise PYTHONWARNINGS="ignore:::django.http.response:517" \ - PNGX_CONTAINERIZED=1 + PNGX_CONTAINERIZED=1 \ + # https://docs.astral.sh/uv/reference/settings/#link-mode + UV_LINK_MODE=copy \ + UV_CACHE_DIR=/cache/uv/ # # Begin installation and configuration @@ -81,7 +84,7 @@ RUN set -eux \ && apt-get update \ && apt-get install --yes --quiet ${PYTHON_PACKAGES} -COPY --from=ghcr.io/astral-sh/uv:0.7.8 /uv /bin/uv +COPY --from=ghcr.io/astral-sh/uv:0.9.10 /uv /bin/uv RUN set -eux \ @@ -103,6 +106,7 @@ COPY [ \ RUN set -eux \ && echo "Configuring ImageMagick" \ + && mkdir -p /etc/ImageMagick-6 \ && mv paperless-policy.xml /etc/ImageMagick-6/policy.xml @@ -118,7 +122,7 @@ ARG BUILD_PACKAGES="\ pkg-config" # hadolint ignore=DL3042 -RUN --mount=type=cache,target=/root/.cache/uv,id=pip-cache \ +RUN --mount=type=cache,target=/cache/uv/,id=uv-cache \ set -eux \ && echo "Installing build system packages" \ && apt-get update \ From 1e61a6cd6a883cdfd2483a0a0c488c2bb8d4c9b5 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 25 Nov 2025 09:18:05 -0800 Subject: [PATCH 115/133] Fix: handle allauth groups location breaking change (#11471) --- src/paperless/signals.py | 13 +++++- src/paperless/tests/test_signals.py | 62 +++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+), 2 deletions(-) diff --git a/src/paperless/signals.py b/src/paperless/signals.py index a173ccc2e..cfad29dbd 100644 --- a/src/paperless/signals.py +++ b/src/paperless/signals.py @@ -38,10 +38,19 @@ def handle_social_account_updated(sender, request, sociallogin, **kwargs): """ from django.contrib.auth.models import Group - social_account_groups = sociallogin.account.extra_data.get( + extra_data = sociallogin.account.extra_data or {} + social_account_groups = extra_data.get( "groups", [], - ) # None if not found + ) # pre-allauth 65.11.0 structure + + if not social_account_groups: + # allauth 65.11.0+ nests claims under `userinfo`/`id_token` + social_account_groups = ( + extra_data.get("userinfo", {}).get("groups") + or extra_data.get("id_token", {}).get("groups") + or [] + ) if settings.SOCIAL_ACCOUNT_SYNC_GROUPS and social_account_groups is not None: groups = Group.objects.filter(name__in=social_account_groups) logger.debug( diff --git a/src/paperless/tests/test_signals.py b/src/paperless/tests/test_signals.py index a77580b7b..a21f3b660 100644 --- a/src/paperless/tests/test_signals.py +++ b/src/paperless/tests/test_signals.py @@ -192,6 +192,68 @@ class TestSyncSocialLoginGroups(TestCase): ) self.assertEqual(list(user.groups.all()), []) + @override_settings(SOCIAL_ACCOUNT_SYNC_GROUPS=True) + def test_userinfo_groups(self): + """ + GIVEN: + - Enabled group syncing, and `groups` nested under `userinfo` + WHEN: + - The social login is updated via signal after login + THEN: + - The user's groups are updated using `userinfo.groups` + """ + group = Group.objects.create(name="group1") + user = User.objects.create_user(username="testuser") + sociallogin = Mock( + user=user, + account=Mock( + extra_data={ + "userinfo": { + "groups": ["group1"], + }, + }, + ), + ) + + handle_social_account_updated( + sender=None, + request=HttpRequest(), + sociallogin=sociallogin, + ) + + self.assertEqual(list(user.groups.all()), [group]) + + @override_settings(SOCIAL_ACCOUNT_SYNC_GROUPS=True) + def test_id_token_groups_fallback(self): + """ + GIVEN: + - Enabled group syncing, and `groups` only under `id_token` + WHEN: + - The social login is updated via signal after login + THEN: + - The user's groups are updated using `id_token.groups` + """ + group = Group.objects.create(name="group1") + user = User.objects.create_user(username="testuser") + sociallogin = Mock( + user=user, + account=Mock( + extra_data={ + "id_token": { + "groups": ["group1"], + }, + }, + ), + ) + + handle_social_account_updated( + sender=None, + request=HttpRequest(), + sociallogin=sociallogin, + ) + + self.assertEqual(list(user.groups.all()), [group]) + class TestUserGroupDeletionCleanup(TestCase): """ From 71e08a1e98dda81826ca958c55b68dcd1576ea87 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Nov 2025 16:24:05 -0800 Subject: [PATCH 116/133] Chore(deps): Bump @angular/common from 20.3.12 to 20.3.14 in /src-ui (#11481) Bumps [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) from 20.3.12 to 20.3.14. - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/20.3.14/packages/common) --- updated-dependencies: - dependency-name: "@angular/common" dependency-version: 20.3.14 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src-ui/package.json | 2 +- src-ui/pnpm-lock.yaml | 158 +++++++++++++++++++++--------------------- 2 files changed, 80 insertions(+), 80 deletions(-) diff --git a/src-ui/package.json b/src-ui/package.json index 345c06dd5..ed59cf4a6 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -12,7 +12,7 @@ "private": true, "dependencies": { "@angular/cdk": "^20.2.13", - "@angular/common": "~20.3.12", + "@angular/common": "~20.3.14", "@angular/compiler": "~20.3.12", "@angular/core": "~20.3.12", "@angular/forms": "~20.3.12", diff --git a/src-ui/pnpm-lock.yaml b/src-ui/pnpm-lock.yaml index 7def279c6..7f049421f 100644 --- a/src-ui/pnpm-lock.yaml +++ b/src-ui/pnpm-lock.yaml @@ -10,10 +10,10 @@ importers: dependencies: '@angular/cdk': specifier: ^20.2.13 - version: 20.2.13(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + version: 20.2.13(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/common': - specifier: ~20.3.12 - version: 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + specifier: ~20.3.14 + version: 20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/compiler': specifier: ~20.3.12 version: 20.3.12 @@ -22,28 +22,28 @@ importers: version: 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) '@angular/forms': specifier: ~20.3.12 - version: 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + version: 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) '@angular/localize': specifier: ~20.3.12 version: 20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12) '@angular/platform-browser': specifier: ~20.3.12 - version: 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) + version: 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) '@angular/platform-browser-dynamic': specifier: ~20.3.12 - version: 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))) + version: 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))) '@angular/router': specifier: ~20.3.12 - version: 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + version: 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) '@ng-bootstrap/ng-bootstrap': specifier: ^19.0.1 - version: 19.0.1(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@popperjs/core@2.11.8)(rxjs@7.8.2) + version: 19.0.1(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@popperjs/core@2.11.8)(rxjs@7.8.2) '@ng-select/ng-select': specifier: ^20.7.0 - version: 20.7.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)) + version: 20.7.0(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)) '@ngneat/dirty-check-forms': specifier: ^3.0.3 - version: 3.0.3(30ab5a8fe47ec28a91fa5d2ee68e6d33) + version: 3.0.3(8ff1ffec9c0eb3e42a8b58cc79f67aaa) '@popperjs/core': specifier: ^2.11.8 version: 2.11.8 @@ -61,19 +61,19 @@ importers: version: 10.4.0 ngx-bootstrap-icons: specifier: ^1.9.3 - version: 1.9.3(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) + version: 1.9.3(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) ngx-color: specifier: ^10.1.0 - version: 10.1.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) + version: 10.1.0(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) ngx-cookie-service: specifier: ^20.1.1 - version: 20.1.1(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) + version: 20.1.1(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) ngx-device-detector: specifier: ^10.1.0 - version: 10.1.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) + version: 10.1.0(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) ngx-ui-tour-ng-bootstrap: specifier: ^17.0.1 - version: 17.0.1(ea1ef7845320e16ba2fd99b51fa9f5ad) + version: 17.0.1(1990d937b48b356c3a7b81a3382c7bae) rxjs: specifier: ^7.8.2 version: 7.8.2 @@ -92,10 +92,10 @@ importers: devDependencies: '@angular-builders/custom-webpack': specifier: ^20.0.0 - version: 20.0.0(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) + version: 20.0.0(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) '@angular-builders/jest': specifier: ^20.0.0 - version: 20.0.0(f235def4c8e1307a0f702d1be69d225c) + version: 20.0.0(2a2dc918d42153e5c2c5a3eb18182c36) '@angular-devkit/core': specifier: ^20.3.10 version: 20.3.10(chokidar@4.0.3) @@ -119,7 +119,7 @@ importers: version: 20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@angular/build': specifier: ^20.3.10 - version: 20.3.10(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) + version: 20.3.10(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) '@angular/cli': specifier: ~20.3.10 version: 20.3.10(@types/node@24.10.1)(chokidar@4.0.3) @@ -161,7 +161,7 @@ importers: version: 16.0.0 jest-preset-angular: specifier: ^15.0.3 - version: 15.0.3(95a8eae46a7b2bcef52e71596dd4f983) + version: 15.0.3(138e950b6256ba9944139a8c5aad3bdf) jest-websocket-mock: specifier: ^2.5.0 version: 2.5.0 @@ -507,11 +507,11 @@ packages: engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} hasBin: true - '@angular/common@20.3.12': - resolution: {integrity: sha512-rFcDfe67ffrb435C6t2lc27WGbizeOcgce30tUhH0iezwEvU+kHHWezXXX6Ylx3TFgqGkhcxL0fliuFYrpM1Vw==} + '@angular/common@20.3.14': + resolution: {integrity: sha512-OOUvjTtnpktJLsNupA+GFT2q5zNocPdpOENA8aSrXvAheNybLjgi+otO3U3sQsvB1VwaoEZ9GT5O3lZlstnA/A==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} peerDependencies: - '@angular/core': 20.3.12 + '@angular/core': 20.3.14 rxjs: ^6.5.3 || ^7.4.0 '@angular/compiler-cli@20.3.12': @@ -7049,13 +7049,13 @@ snapshots: - chokidar - typescript - '@angular-builders/custom-webpack@20.0.0(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0)': + '@angular-builders/custom-webpack@20.0.0(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0)': dependencies: '@angular-builders/common': 4.0.0(@types/node@24.10.1)(chokidar@4.0.3)(typescript@5.8.3) '@angular-devkit/architect': 0.2000.4(chokidar@4.0.3) - '@angular-devkit/build-angular': 20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) + '@angular-devkit/build-angular': 20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) '@angular-devkit/core': 20.3.10(chokidar@4.0.3) - '@angular/build': 20.3.10(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) + '@angular/build': 20.3.10(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) '@angular/compiler-cli': 20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3) lodash: 4.17.21 webpack-merge: 6.0.1 @@ -7103,17 +7103,17 @@ snapshots: - webpack-cli - yaml - '@angular-builders/jest@20.0.0(f235def4c8e1307a0f702d1be69d225c)': + '@angular-builders/jest@20.0.0(2a2dc918d42153e5c2c5a3eb18182c36)': dependencies: '@angular-builders/common': 4.0.0(@types/node@24.10.1)(chokidar@4.0.3)(typescript@5.8.3) '@angular-devkit/architect': 0.2000.4(chokidar@4.0.3) - '@angular-devkit/build-angular': 20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) + '@angular-devkit/build-angular': 20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0) '@angular-devkit/core': 20.3.10(chokidar@4.0.3) '@angular/compiler-cli': 20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3) '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/platform-browser-dynamic': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))) + '@angular/platform-browser-dynamic': 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))) jest: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) - jest-preset-angular: 14.6.0(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser-dynamic@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))))(@babel/core@7.28.5)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.5))(canvas@3.0.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jsdom@26.1.0(canvas@3.0.0))(typescript@5.8.3) + jest-preset-angular: 14.6.0(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser-dynamic@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))))(@babel/core@7.28.5)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.5))(canvas@3.0.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jsdom@26.1.0(canvas@3.0.0))(typescript@5.8.3) lodash: 4.17.21 transitivePeerDependencies: - '@babel/core' @@ -7145,13 +7145,13 @@ snapshots: transitivePeerDependencies: - chokidar - '@angular-devkit/build-angular@20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0)': + '@angular-devkit/build-angular@20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jest-environment-jsdom@30.2.0(canvas@3.0.0))(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jiti@1.21.7)(typescript@5.8.3)(vite@7.1.11(@types/node@24.10.1)(jiti@1.21.7)(less@4.3.0)(sass@1.90.0)(terser@5.39.1)(yaml@2.7.0))(yaml@2.7.0)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.2000.4(chokidar@4.0.3) '@angular-devkit/build-webpack': 0.2000.4(chokidar@4.0.3)(webpack-dev-server@5.2.1(webpack@5.102.1))(webpack@5.99.8(esbuild@0.25.5)) '@angular-devkit/core': 20.0.4(chokidar@4.0.3) - '@angular/build': 20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) + '@angular/build': 20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0) '@angular/compiler-cli': 20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3) '@babel/core': 7.27.1 '@babel/generator': 7.27.1 @@ -7207,7 +7207,7 @@ snapshots: optionalDependencies: '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) '@angular/localize': 20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12) - '@angular/platform-browser': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/platform-browser': 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) esbuild: 0.25.5 jest: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) jest-environment-jsdom: 30.2.0(canvas@3.0.0) @@ -7339,7 +7339,7 @@ snapshots: eslint: 9.39.1(jiti@1.21.7) typescript: 5.8.3 - '@angular/build@20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0)': + '@angular/build@20.0.4(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.2000.4(chokidar@4.0.3) @@ -7374,7 +7374,7 @@ snapshots: optionalDependencies: '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) '@angular/localize': 20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12) - '@angular/platform-browser': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/platform-browser': 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) less: 4.3.0 lmdb: 3.3.0 postcss: 8.5.3 @@ -7391,7 +7391,7 @@ snapshots: - tsx - yaml - '@angular/build@20.3.10(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0)': + '@angular/build@20.3.10(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.10.1)(chokidar@4.0.3)(jiti@1.21.7)(less@4.3.0)(postcss@8.5.3)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.2003.10(chokidar@4.0.3) @@ -7426,7 +7426,7 @@ snapshots: optionalDependencies: '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) '@angular/localize': 20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12) - '@angular/platform-browser': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/platform-browser': 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) less: 4.3.0 lmdb: 3.4.2 postcss: 8.5.3 @@ -7443,9 +7443,9 @@ snapshots: - tsx - yaml - '@angular/cdk@20.2.13(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)': + '@angular/cdk@20.2.13(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)': dependencies: - '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/common': 20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) parse5: 8.0.0 rxjs: 7.8.2 @@ -7476,7 +7476,7 @@ snapshots: - chokidar - supports-color - '@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)': + '@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)': dependencies: '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) rxjs: 7.8.2 @@ -7510,11 +7510,11 @@ snapshots: '@angular/compiler': 20.3.12 zone.js: 0.15.1 - '@angular/forms@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)': + '@angular/forms@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)': dependencies: - '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/common': 20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/platform-browser': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/platform-browser': 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) rxjs: 7.8.2 tslib: 2.8.1 @@ -7529,25 +7529,25 @@ snapshots: transitivePeerDependencies: - supports-color - '@angular/platform-browser-dynamic@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))': + '@angular/platform-browser-dynamic@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))': dependencies: - '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/common': 20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/compiler': 20.3.12 '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/platform-browser': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/platform-browser': 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) tslib: 2.8.1 - '@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))': + '@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))': dependencies: - '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/common': 20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) tslib: 2.8.1 - '@angular/router@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)': + '@angular/router@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)': dependencies: - '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/common': 20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/platform-browser': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/platform-browser': 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) rxjs: 7.8.2 tslib: 2.8.1 @@ -9351,28 +9351,28 @@ snapshots: '@tybys/wasm-util': 0.10.1 optional: true - '@ng-bootstrap/ng-bootstrap@19.0.1(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@popperjs/core@2.11.8)(rxjs@7.8.2)': + '@ng-bootstrap/ng-bootstrap@19.0.1(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@popperjs/core@2.11.8)(rxjs@7.8.2)': dependencies: - '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/common': 20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/forms': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + '@angular/forms': 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) '@angular/localize': 20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12) '@popperjs/core': 2.11.8 rxjs: 7.8.2 tslib: 2.8.1 - '@ng-select/ng-select@20.7.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))': + '@ng-select/ng-select@20.7.0(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))': dependencies: - '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/common': 20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/forms': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + '@angular/forms': 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) tslib: 2.8.1 - '@ngneat/dirty-check-forms@3.0.3(30ab5a8fe47ec28a91fa5d2ee68e6d33)': + '@ngneat/dirty-check-forms@3.0.3(8ff1ffec9c0eb3e42a8b58cc79f67aaa)': dependencies: '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/forms': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) - '@angular/router': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + '@angular/forms': 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + '@angular/router': 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) lodash-es: 4.17.21 rxjs: 7.8.2 tslib: 2.8.1 @@ -12068,11 +12068,11 @@ snapshots: optionalDependencies: jest-resolve: 30.2.0 - jest-preset-angular@14.6.0(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser-dynamic@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))))(@babel/core@7.28.5)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.5))(canvas@3.0.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jsdom@26.1.0(canvas@3.0.0))(typescript@5.8.3): + jest-preset-angular@14.6.0(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser-dynamic@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))))(@babel/core@7.28.5)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.5))(canvas@3.0.0)(jest@30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)))(jsdom@26.1.0(canvas@3.0.0))(typescript@5.8.3): dependencies: '@angular/compiler-cli': 20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3) '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/platform-browser-dynamic': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))) + '@angular/platform-browser-dynamic': 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))) bs-logger: 0.2.6 esbuild-wasm: 0.25.10 jest: 30.2.0(@types/node@24.10.1)(ts-node@10.9.2(@types/node@24.10.1)(typescript@5.8.3)) @@ -12094,12 +12094,12 @@ snapshots: - supports-color - utf-8-validate - jest-preset-angular@15.0.3(95a8eae46a7b2bcef52e71596dd4f983): + jest-preset-angular@15.0.3(138e950b6256ba9944139a8c5aad3bdf): dependencies: '@angular/compiler-cli': 20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3) '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/platform-browser': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) - '@angular/platform-browser-dynamic': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))) + '@angular/platform-browser': 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)) + '@angular/platform-browser-dynamic': 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.12)(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))) '@jest/environment-jsdom-abstract': 30.2.0(canvas@3.0.0)(jsdom@26.1.0(canvas@3.0.0)) bs-logger: 0.2.6 esbuild-wasm: 0.27.0 @@ -12767,46 +12767,46 @@ snapshots: pdfjs-dist: 4.8.69 tslib: 2.8.1 - ngx-bootstrap-icons@1.9.3(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)): + ngx-bootstrap-icons@1.9.3(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)): dependencies: - '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/common': 20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) tslib: 2.8.1 - ngx-color@10.1.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)): + ngx-color@10.1.0(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)): dependencies: - '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/common': 20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) '@ctrl/tinycolor': 4.2.0 material-colors: 1.2.6 tslib: 2.8.1 - ngx-cookie-service@20.1.1(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)): + ngx-cookie-service@20.1.1(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)): dependencies: - '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/common': 20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) tslib: 2.8.1 - ngx-device-detector@10.1.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)): + ngx-device-detector@10.1.0(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)): dependencies: - '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/common': 20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) tslib: 2.8.1 - ngx-ui-tour-core@15.0.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/router@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(rxjs@7.8.2): + ngx-ui-tour-core@15.0.0(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/router@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(rxjs@7.8.2): dependencies: - '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/common': 20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) - '@angular/router': 20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) + '@angular/router': 20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) rxjs: 7.8.2 tslib: 2.8.1 - ngx-ui-tour-ng-bootstrap@17.0.1(ea1ef7845320e16ba2fd99b51fa9f5ad): + ngx-ui-tour-ng-bootstrap@17.0.1(1990d937b48b356c3a7b81a3382c7bae): dependencies: - '@angular/common': 20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) + '@angular/common': 20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/core': 20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1) - '@ng-bootstrap/ng-bootstrap': 19.0.1(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@popperjs/core@2.11.8)(rxjs@7.8.2) - ngx-ui-tour-core: 15.0.0(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/router@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.12(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(rxjs@7.8.2) + '@ng-bootstrap/ng-bootstrap': 19.0.1(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/localize@20.3.12(@angular/compiler-cli@20.3.12(@angular/compiler@20.3.12)(typescript@5.8.3))(@angular/compiler@20.3.12))(@popperjs/core@2.11.8)(rxjs@7.8.2) + ngx-ui-tour-core: 15.0.0(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/router@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.12(@angular/common@20.3.14(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.12(@angular/compiler@20.3.12)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(rxjs@7.8.2) tslib: 2.8.1 transitivePeerDependencies: - '@angular/router' From ca674e5a0202d9deb60c7cf9c9784b13d37b7181 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 27 Nov 2025 00:25:48 +0000 Subject: [PATCH 117/133] Auto translate strings --- src-ui/messages.xlf | 70 ++++++++++++++++++++++----------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 428420a0c..9d361f292 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -5,14 +5,14 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -20,212 +20,212 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -233,7 +233,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 From 67d079fe14628f5fd06dc9683f0d384088797b66 Mon Sep 17 00:00:00 2001 From: Daniel Rheinbay Date: Fri, 28 Nov 2025 23:25:57 +0100 Subject: [PATCH 118/133] fix: Skip SSL for MariaDB ping in init script (#11491) Restore compatibility with MariaDB server versions < 11.4, which do not use SSL by default. --- docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run index 170b2ed61..17df9bef9 100755 --- a/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run +++ b/docker/rootfs/etc/s6-overlay/s6-rc.d/init-wait-for-db/run @@ -50,9 +50,8 @@ wait_for_mariadb() { local -r host="${PAPERLESS_DBHOST:-localhost}" local -r port="${PAPERLESS_DBPORT:-3306}" - local -r user="${PAPERLESS_DBUSER:-paperless}" - while ! mariadb-admin --host="${host}" --port="${port}" --user="${user}" ping --silent >/dev/null 2>&1; do + while ! mariadb-admin --host="${host}" --port="${port}" --skip-ssl ping --silent >/dev/null 2>&1; do delay_next_attempt done echo "${LOG_PREFIX} Connected to MariaDB" From 0c43b50f017317fd2e1c6f84262c654328525a94 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 29 Nov 2025 19:54:15 -0800 Subject: [PATCH 119/133] Fix: change async handling of select custom field updates (#11490) --- src/documents/signals/handlers.py | 44 ++++++++++------- src/documents/tests/test_api_custom_fields.py | 47 +++++++++++++++++++ src/documents/tests/test_file_handling.py | 7 +-- 3 files changed, 77 insertions(+), 21 deletions(-) diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index 0e53c9357..e410b54e2 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -396,7 +396,6 @@ class CannotMoveFilesException(Exception): @receiver(models.signals.post_save, sender=CustomFieldInstance, weak=False) @receiver(models.signals.m2m_changed, sender=Document.tags.through, weak=False) @receiver(models.signals.post_save, sender=Document, weak=False) -@shared_task def update_filename_and_move_files( sender, instance: Document | CustomFieldInstance, @@ -533,34 +532,43 @@ def update_filename_and_move_files( ) -# should be disabled in /src/documents/management/commands/document_importer.py handle -@receiver(models.signals.post_save, sender=CustomField) -def check_paths_and_prune_custom_fields(sender, instance: CustomField, **kwargs): +@shared_task +def process_cf_select_update(custom_field: CustomField): """ - When a custom field is updated: + Update documents tied to a select custom field: + 1. 'Select' custom field instances get their end-user value (e.g. in file names) from the select_options in extra_data, which is contained in the custom field itself. So when the field is changed, we (may) need to update the file names of all documents that have this custom field. 2. If a 'Select' field option was removed, we need to nullify the custom field instances that have the option. """ + select_options = { + option["id"]: option["label"] + for option in custom_field.extra_data.get("select_options", []) + } + + # Clear select values that no longer exist + custom_field.fields.exclude( + value_select__in=select_options.keys(), + ).update(value_select=None) + + for cf_instance in custom_field.fields.select_related("document").iterator(): + # Update the filename and move files if necessary + update_filename_and_move_files(CustomFieldInstance, cf_instance) + + +# should be disabled in /src/documents/management/commands/document_importer.py handle +@receiver(models.signals.post_save, sender=CustomField) +def check_paths_and_prune_custom_fields(sender, instance: CustomField, **kwargs): + """ + When a custom field is updated, check if we need to update any documents. Done async to avoid slowing down the save operation. + """ if ( instance.data_type == CustomField.FieldDataType.SELECT and instance.fields.count() > 0 and instance.extra_data ): # Only select fields, for now - select_options = { - option["id"]: option["label"] - for option in instance.extra_data.get("select_options", []) - } - - for cf_instance in instance.fields.all(): - # Check if the current value is still a valid option - if cf_instance.value not in select_options: - cf_instance.value_select = None - cf_instance.save(update_fields=["value_select"]) - - # Update the filename and move files if necessary - update_filename_and_move_files.delay(sender, cf_instance) + process_cf_select_update.delay(instance) @receiver(models.signals.post_delete, sender=CustomField) diff --git a/src/documents/tests/test_api_custom_fields.py b/src/documents/tests/test_api_custom_fields.py index b6e6c1342..8cc8f2cb2 100644 --- a/src/documents/tests/test_api_custom_fields.py +++ b/src/documents/tests/test_api_custom_fields.py @@ -1,5 +1,6 @@ import json from datetime import date +from unittest import mock from unittest.mock import ANY from django.contrib.auth.models import Permission @@ -276,6 +277,52 @@ class TestCustomFieldsAPI(DirectoriesMixin, APITestCase): doc.refresh_from_db() self.assertEqual(doc.custom_fields.first().value, None) + @mock.patch("documents.signals.handlers.process_cf_select_update.delay") + def test_custom_field_update_offloaded_once(self, mock_delay): + """ + GIVEN: + - A select custom field attached to multiple documents + WHEN: + - The select options are updated + THEN: + - The async update task is enqueued once + """ + cf_select = CustomField.objects.create( + name="Select Field", + data_type=CustomField.FieldDataType.SELECT, + extra_data={ + "select_options": [ + {"label": "Option 1", "id": "abc-123"}, + {"label": "Option 2", "id": "def-456"}, + ], + }, + ) + + documents = [ + Document.objects.create( + title="WOW", + content="the content", + checksum=f"{i}", + mime_type="application/pdf", + ) + for i in range(3) + ] + for document in documents: + CustomFieldInstance.objects.create( + document=document, + field=cf_select, + value_select="def-456", + ) + + cf_select.extra_data = { + "select_options": [ + {"label": "Option 1", "id": "abc-123"}, + ], + } + cf_select.save() + + mock_delay.assert_called_once_with(cf_select) + def test_custom_field_select_old_version(self): """ GIVEN: diff --git a/src/documents/tests/test_file_handling.py b/src/documents/tests/test_file_handling.py index 117a964ba..a1fd3d674 100644 --- a/src/documents/tests/test_file_handling.py +++ b/src/documents/tests/test_file_handling.py @@ -530,6 +530,7 @@ class TestFileHandling(DirectoriesMixin, FileSystemAssertsMixin, TestCase): @override_settings( FILENAME_FORMAT="{{title}}_{{custom_fields|get_cf_value('test')}}", + CELERY_TASK_ALWAYS_EAGER=True, ) @mock.patch("documents.signals.handlers.update_filename_and_move_files") def test_select_cf_updated(self, m): @@ -569,7 +570,7 @@ class TestFileHandling(DirectoriesMixin, FileSystemAssertsMixin, TestCase): self.assertEqual(generate_filename(doc), Path("document_apple.pdf")) # handler should not have been called - self.assertEqual(m.delay.call_count, 0) + self.assertEqual(m.call_count, 0) cf.extra_data = { "select_options": [ {"label": "aubergine", "id": "abc123"}, @@ -579,8 +580,8 @@ class TestFileHandling(DirectoriesMixin, FileSystemAssertsMixin, TestCase): } cf.save() self.assertEqual(generate_filename(doc), Path("document_aubergine.pdf")) - # handler should have been called via delay - self.assertEqual(m.delay.call_count, 1) + # handler should have been called once via the async task + self.assertEqual(m.call_count, 1) class TestFileHandlingWithArchive(DirectoriesMixin, FileSystemAssertsMixin, TestCase): From 4632ad3a36026c3d131c526bebee0f4533e00a18 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 30 Nov 2025 07:20:24 -0800 Subject: [PATCH 120/133] Fix: set search term when using advanced search from global search (#11503) --- .../app-frame/global-search/global-search.component.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src-ui/src/app/components/app-frame/global-search/global-search.component.ts b/src-ui/src/app/components/app-frame/global-search/global-search.component.ts index fed452bfb..4f9a2467c 100644 --- a/src-ui/src/app/components/app-frame/global-search/global-search.component.ts +++ b/src-ui/src/app/components/app-frame/global-search/global-search.component.ts @@ -411,6 +411,9 @@ export class GlobalSearchComponent implements OnInit { const ruleType = this.useAdvancedForFullSearch ? FILTER_FULLTEXT_QUERY : FILTER_TITLE_CONTENT + this.documentService.searchQuery = this.useAdvancedForFullSearch + ? this.query + : '' this.documentListViewService.quickFilter([ { rule_type: ruleType, value: this.query }, ]) From 919c54c6ba0240d04a8a1bf36ef2a67ae459780d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 18:28:42 +0000 Subject: [PATCH 121/133] docker(deps): Bump astral-sh/uv (#11450) Bumps [astral-sh/uv](https://github.com/astral-sh/uv) from 0.9.10-python3.12-trixie-slim to 0.9.14-python3.12-trixie-slim. - [Release notes](https://github.com/astral-sh/uv/releases) - [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/uv/compare/0.9.10...0.9.14) --- updated-dependencies: - dependency-name: astral-sh/uv dependency-version: 0.9.11-python3.12-trixie-slim dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6cedb9ba4..4d1dbb13e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN set -eux \ # Purpose: Installs s6-overlay and rootfs # Comments: # - Don't leave anything extra in here either -FROM ghcr.io/astral-sh/uv:0.9.10-python3.12-trixie-slim AS s6-overlay-base +FROM ghcr.io/astral-sh/uv:0.9.14-python3.12-trixie-slim AS s6-overlay-base WORKDIR /usr/src/s6 From 8c5b5cd77bb30e821e1a8592acf267325bd1ac91 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 21:58:07 +0000 Subject: [PATCH 122/133] New Crowdin translations by GitHub Action (#11442) Co-authored-by: Crowdin Bot --- src-ui/src/locale/messages.af_ZA.xlf | 70 ++-- src-ui/src/locale/messages.ar_AR.xlf | 70 ++-- src-ui/src/locale/messages.be_BY.xlf | 70 ++-- src-ui/src/locale/messages.bg_BG.xlf | 70 ++-- src-ui/src/locale/messages.ca_ES.xlf | 72 ++-- src-ui/src/locale/messages.cs_CZ.xlf | 70 ++-- src-ui/src/locale/messages.da_DK.xlf | 70 ++-- src-ui/src/locale/messages.de_DE.xlf | 70 ++-- src-ui/src/locale/messages.el_GR.xlf | 70 ++-- src-ui/src/locale/messages.es_ES.xlf | 70 ++-- src-ui/src/locale/messages.et_EE.xlf | 70 ++-- src-ui/src/locale/messages.fa_IR.xlf | 70 ++-- src-ui/src/locale/messages.fi_FI.xlf | 70 ++-- src-ui/src/locale/messages.fr_FR.xlf | 70 ++-- src-ui/src/locale/messages.he_IL.xlf | 70 ++-- src-ui/src/locale/messages.hr_HR.xlf | 70 ++-- src-ui/src/locale/messages.hu_HU.xlf | 70 ++-- src-ui/src/locale/messages.id_ID.xlf | 70 ++-- src-ui/src/locale/messages.it_IT.xlf | 70 ++-- src-ui/src/locale/messages.ja_JP.xlf | 70 ++-- src-ui/src/locale/messages.ko_KR.xlf | 94 ++--- src-ui/src/locale/messages.lb_LU.xlf | 70 ++-- src-ui/src/locale/messages.lt_LT.xlf | 70 ++-- src-ui/src/locale/messages.lv_LV.xlf | 70 ++-- src-ui/src/locale/messages.mk_MK.xlf | 70 ++-- src-ui/src/locale/messages.ms_MY.xlf | 70 ++-- src-ui/src/locale/messages.nl_NL.xlf | 70 ++-- src-ui/src/locale/messages.no_NO.xlf | 70 ++-- src-ui/src/locale/messages.pl_PL.xlf | 80 ++-- src-ui/src/locale/messages.pt_BR.xlf | 70 ++-- src-ui/src/locale/messages.pt_PT.xlf | 70 ++-- src-ui/src/locale/messages.ro_RO.xlf | 70 ++-- src-ui/src/locale/messages.ru_RU.xlf | 70 ++-- src-ui/src/locale/messages.sk_SK.xlf | 70 ++-- src-ui/src/locale/messages.sl_SI.xlf | 80 ++-- src-ui/src/locale/messages.sr_CS.xlf | 70 ++-- src-ui/src/locale/messages.sv_SE.xlf | 70 ++-- src-ui/src/locale/messages.th_TH.xlf | 70 ++-- src-ui/src/locale/messages.tr_TR.xlf | 516 ++++++++++++------------- src-ui/src/locale/messages.uk_UA.xlf | 70 ++-- src-ui/src/locale/messages.vi_VN.xlf | 70 ++-- src-ui/src/locale/messages.zh_CN.xlf | 70 ++-- src-ui/src/locale/messages.zh_TW.xlf | 70 ++-- src/locale/ca_ES/LC_MESSAGES/django.po | 2 +- src/locale/ko_KR/LC_MESSAGES/django.po | 2 +- src/locale/pl_PL/LC_MESSAGES/django.po | 2 +- src/locale/sl_SI/LC_MESSAGES/django.po | 2 +- src/locale/tr_TR/LC_MESSAGES/django.po | 2 +- 48 files changed, 1756 insertions(+), 1756 deletions(-) diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf index 0e4195481..7219c5dd8 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Sluit @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Vorige @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Volgende @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Vorige maand @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Volgende maand @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sluit @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Kies maand @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Uur @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Kies jaar @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minute @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Eerste @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Vermeerder ure @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Vorige @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Verminder ure @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Volgende @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Vermeerder minute @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Laaste @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Verminder minute @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekondes @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Vermeerder sekondes @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Verminder sekondes @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index 7aa6ba72d..105083c0b 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 إغلاق @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 السابق @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 التالي @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 الشهر السابق @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 الشهر التالي @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 إغلاق @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 تحديد الشهر @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ساعات @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 اختر السنة @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 دقائق @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 الأول @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 زيادة الساعات @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 السابق @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 إنقاص الساعات @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 التالي @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 زيادة الدقائق @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 الأخير @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 إنقاص الدقائق @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ثوانٍ @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 زيادة الثواني @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 إنقاص الثواني @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index 43609cfca..e9d65738d 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Закрыць @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Папярэдняя @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Наступная @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Папярэдні месяц @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Наступны месяц @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Закрыць @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Абраць месяц @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Гадзіны @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Абраць год @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Хвіліны @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Першы @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Прыбавіць гадзіну @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Папярэдняя @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Адняць гадзіну @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Наступная @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Прыбавіць хвіліну @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 На апошнюю @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Адняць хвіліну @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Секунды @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Прыбавіць секунду @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Адняць секунду @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf index 039ae4934..ec64caea0 100644 --- a/src-ui/src/locale/messages.bg_BG.xlf +++ b/src-ui/src/locale/messages.bg_BG.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Затвори @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Назад @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Напред @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Предишен месец @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Следващ месец @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Затвори @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Изберете месец @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Часове @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ММ @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Изберете година @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Минути @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Първи @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Увеличете часове @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Предишен @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Намалете часовете @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Напред @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Увеличете минутите @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Последен @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Намалете минутите @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Секунди @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Увеличете секундите @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Намалете секундите @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index 3f527999d..e81b70b29 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Tanca @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Anterior @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Següent @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Mes anterior @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Mes següent @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Tanca @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Seleccioneu mes @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Hores @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Seleccioneu un any @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minuts @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Primer @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrementa hores @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Anterior @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Disminuir hores @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Següent @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrementar minuts @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Últim @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Disminuir minuts @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Segons @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrementar segons @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Disminuir segons @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 @@ -892,7 +892,7 @@ src/app/components/admin/logs/logs.component.html 60 - Jump to bottom + Vés al final Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index d97b2b1ff..8f3a8f623 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Zavřít @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Předchozí @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Následující @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Předchozí měsíc @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Následující měsíc @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zavřít @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Vybrat měsíc @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Hodin @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Vybrat rok @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minuty @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 První @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zvýšení počtu hodin @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Předchozí @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Snížení počtu hodin @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Následující @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zvýšení počtu minut @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Poslední @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Snížení počtu minut @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekundy @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zvýšení počtu sekund @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Snížení počtu sekund @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index 6fa7f7bdd..cef5966fd 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Luk @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Forrige @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Næste @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Forrige måned @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Næste måned @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Luk @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Vælg måned @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Timer @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Vælg år @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minutter @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Første @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Forøg timer @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Forrige @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Reducer timer @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Næste @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Forøg minutter @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sidste @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Reducer minutter @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekunder @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Forøg sekunder @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Reducer sekunder @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index 323e4c6c6..5b138e6d9 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Schließen @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Vorherige @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Nächste @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Vorheriger Monat @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Nächster Monat @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Schließen @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Monat auswählen @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Stunden @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Jahr auswählen @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minuten @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Erste @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Stunden erhöhen @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Vorherige @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Stunden verringern @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Nächste @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minuten erhöhen @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Letzte @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minuten verringern @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekunden @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekunden erhöhen @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekunden verringern @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf index 1dda7e456..dcd0d92cb 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Κλείσιμο @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Προηγούμενο @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Επόμενο @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Προηγούμενος μήνας @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Επόμενος μήνας @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Κλείσιμο @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Επιλογή μήνα @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Ώρες @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ΜΜ @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Επιλογή έτους @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Λεπτά @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Πρώτο @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Προσαύξηση ωρών @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Προηγούμενο @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Μείωση ωρών @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Επόμενο @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Προσαύξηση λεπτών @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Τελευταίο @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Μείωση λεπτών @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Δευτερόλεπτα @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Προσαύξηση δευτερολέπτων @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Μείωση δευτερολέπτων @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index c7d572970..490cb28c3 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Cerrar @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Anterior @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Siguiente @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Mes anterior @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Mes siguiente @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Cerrar @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Seleccionar mes @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Horas @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Seleccionar año @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minutos @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Primero @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrementar horas @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Anterior @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Disminuir horas @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Siguiente @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrementar minutos @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Último @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Disminuir minutos @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Segundos @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrementar segundos @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Disminuir segundos @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.et_EE.xlf b/src-ui/src/locale/messages.et_EE.xlf index 877fde361..0e053fd08 100644 --- a/src-ui/src/locale/messages.et_EE.xlf +++ b/src-ui/src/locale/messages.et_EE.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Close @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Previous @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Next @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Previous month @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Next month @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Close @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Select month @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Hours @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Select year @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minutes @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 First @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Increment hours @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Previous @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrement hours @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Next @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Increment minutes @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Last @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrement minutes @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Seconds @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Increment seconds @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrement seconds @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.fa_IR.xlf b/src-ui/src/locale/messages.fa_IR.xlf index 517d89ab1..16dcdb5f9 100644 --- a/src-ui/src/locale/messages.fa_IR.xlf +++ b/src-ui/src/locale/messages.fa_IR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 نزدیک @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 قبلی @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 طرف دیگر @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 ماه قبل @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 ماه بعد @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 نزدیک @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ماه را انتخاب کنید @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ساعت @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 " @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 مگنی @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 سال را انتخاب کنید @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 دقایقی @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 اولی @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ساعات افزایشی @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 قبلی @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ساعات کاهش @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 طرف دیگر @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 چند دقیقه افزایشی @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 آخرین @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 دقیقه کاهش @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ثانیه @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ثانیه های افزایشی @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ثانیه کاهش @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index 035ea7722..9fbe4cb35 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Sulje @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Edellinen @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Seuraava @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Edellinen kuukausi @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Seuraava kuukausi @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sulje @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Valitse kuukausi @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Tuntia @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Valitse vuosi @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minuuttia @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Ensimmäinen @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Lisää tunteja @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Edellinen @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Pienennä tunteja @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Seuraava @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Lisää minuutteja @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Viimeinen @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Pienennä minuutteja @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekuntia @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Lisäys sekunteina @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Vähennys sekunteina @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 9d13c5193..824b925ac 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Fermer @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Précédent @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Suivant @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Mois précédent @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Mois suivant @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Fermer @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sélectionner le mois @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Heures @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sélectionner l'année @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minutes @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Premier @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrémenter les heures @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Précédent @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Décrémenter les heures @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Suivant @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrémenter les minutes @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Dernier @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Décrémenter les minutes @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Secondes @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrémenter les secondes @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Décrémenter les secondes @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index 5cb285e33..e49585147 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 סגור @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 הקודם @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 הבא @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 חודש קודם @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 חודש הבא @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 שש @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 סגירה @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 בחירת חודש @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 שעות @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 חח @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 בחר שנה @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 דקות @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ראשון @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 הגדלת שעות @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 קודם @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 הקטנת שעות @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 הבא @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 הגדלת דקות @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 אחרון @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 הקטנת דקות @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 שש @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 שניות @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 הגדלת שניות @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 הקטנת שניות @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index beb9b3b1d..590ca22ae 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Zatvori @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Prethodno @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Sljedeće @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Prethodni mjesec @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Sljedeći mjesec @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zatvori @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Odaberi mjesec @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sati @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Odaberi godinu @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minute @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Prvi @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Povećanje sati @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Prethodni @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Smanjenje sati @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sljedeći @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Povečanje minuta @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zadnji @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Smanjenje minuta @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekunde @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Povečanje sekundi @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Smanjenje sekundi @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index dd8e35c97..7e6ebbeab 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Bezár @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Előző @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Következő @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Előző hónap @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 A következő hónapban @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Bezár @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Válassza ki a hónapot @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 "" @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Órák @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 " @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 " @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Év kiválasztása @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Percek @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 "" @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Első @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Növekvő órák @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Előző @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Órák csökkentése @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Következő @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Növekvő percek @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Last @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Percek csökkentése @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Másodpercek @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Növekvő másodpercek @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Másodpercek csökkentése @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf index 20dcf6f5a..f6201c3cc 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Tutup @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Sebelumnya @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Selanjutnya @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Bulan sebelumnya @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Bulan depan @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Tutup @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Pilih bulan @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Jam @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Pilih tahun @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Menit @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Pertama @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Penambahan jam @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sebelumnya @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Pengurangan jam @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Selanjutnya @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Penambahan menit @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Terahkir @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Pengurangan menit @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Detik @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Penambahan detik @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Pengurangan detik @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index 9f6b7e222..122b84fd1 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Chiudi @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Precedente @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Successivo @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Mese precedente @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Il prossimo mese @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Chiudi @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Seleziona il mese @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Ore @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Seleziona anno @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minuti @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Primo @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrementa ore @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Precedente @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrementa ore @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Successivo @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrementa minuti @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Ultimo @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrementa minuti @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Secondi @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incremento in secondi @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decremento in secondi @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf index c2e5217c1..409802fdc 100644 --- a/src-ui/src/locale/messages.ja_JP.xlf +++ b/src-ui/src/locale/messages.ja_JP.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 閉じる @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 前へ @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 次へ @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 前月 @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 翌月 @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 閉じる @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 月を選択 @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 西暦を選択 @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 先頭ページ @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 時の増加 @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 前へ @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 時の減少 @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 次へ @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 分の増加 @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 最終ページ @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 分の減少 @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 秒の増加 @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 秒の減少 @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf index 552f9b69f..28c3cebf0 100644 --- a/src-ui/src/locale/messages.ko_KR.xlf +++ b/src-ui/src/locale/messages.ko_KR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 닫기 @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 이전 @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 다음 @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 지난달 @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 다음 달 @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 닫기 @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 월 선택 @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 시간 @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 연도 선택 @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 처음 @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 시간 증가 @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 이전 @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 감소 시간 @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 다음 @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 분 단위 증가 @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 마지막 @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 분 감소 @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 초 단위 증가 @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 초 단위로 감소 @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 @@ -6222,7 +6222,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 9 - Select all pages + 모든 페이지 선택 Deselect all pages @@ -6230,7 +6230,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 12 - Deselect all pages + 모든 페이지 선택 해제 Rotate selected pages counter-clockwise @@ -6238,7 +6238,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 17 - Rotate selected pages counter-clockwise + 선택한 페이지 반시계방향으로 회전 Rotate selected pages clockwise @@ -6246,7 +6246,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 20 - Rotate selected pages clockwise + 선택한 페이지 시계방향으로 회전 Delete selected pages @@ -6254,7 +6254,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 23 - Delete selected pages + 선택한 페이지 삭제 Rotate page counter-clockwise @@ -6994,7 +6994,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 105 - Tasks Queue + 작업 대기열 Redis Status @@ -7042,7 +7042,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 245 - Run Task + 작업 실행 Last Updated @@ -7090,7 +7090,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 257 - WebSocket Connection + WebSocket 연결 OK @@ -7480,7 +7480,7 @@ src/app/components/document-detail/document-detail.component.html 58 - Print + 인쇄 More like this @@ -8036,7 +8036,7 @@ src/app/components/document-detail/document-detail.component.ts 1096 - Error downloading document + 문서 다운로드 중 오류 발생 Page Fit @@ -8068,7 +8068,7 @@ src/app/components/document-detail/document-detail.component.ts 1460 - Print failed. + 인쇄 실패. Error loading document for printing. @@ -9848,7 +9848,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 33 - Received + 받음 Processed diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index 241e5dbbe..fedce8550 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Zoumaachen @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Zréck @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Weider @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Mount virdrun @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Nächste Mount @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zoumaachen @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Mount auswielen @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Stonnen @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Joer auswielen @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minutten @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Ufank @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Stonnen eropsetzen @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zréck @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Stonnen erofsetzen @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Weider @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minutten erhéijen @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Schluss @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minutten erofsetzen @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekonnen @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekonnen eropsetzen @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekonnen erofsetzen @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.lt_LT.xlf b/src-ui/src/locale/messages.lt_LT.xlf index d2c20fe0a..84d6b222e 100644 --- a/src-ui/src/locale/messages.lt_LT.xlf +++ b/src-ui/src/locale/messages.lt_LT.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Uždaryti @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Ankstesnis @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Kitas @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Ankstesnis mėnuo @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Kitas mėnuo @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Uždaryti @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Pasirinktas mėnuo @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Valandos @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Pasirinkti metus @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minutės @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Pirmas @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Padidinti valandas @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Ankstesnis @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sumažinti valandas @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Kitas @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Padidinti minutes @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Paskutinis @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sumažinti minutes @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekundės @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Padidinti sekundes @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sumažinti sekundes @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf index e823f4e09..cfa24891d 100644 --- a/src-ui/src/locale/messages.lv_LV.xlf +++ b/src-ui/src/locale/messages.lv_LV.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Aizvērt @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Iepriekšējais @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Nākamais @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Iepriekšējais mēnesis @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Nākamais mēnesis @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Aizvērt @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Izvēlieties mēnesi @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Stundas @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Izvēlieties gadu @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minūtes @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Pirmā @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Palielināt stundas @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Iepriekšējā @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Samazināt stundas @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Nākamā @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Palielināt minūtes @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Pēdējā @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Samazināt minūtes @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekundes @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Palielināt sekundes @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Samazināt sekundes @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.mk_MK.xlf b/src-ui/src/locale/messages.mk_MK.xlf index d128f32a5..b1da14d38 100644 --- a/src-ui/src/locale/messages.mk_MK.xlf +++ b/src-ui/src/locale/messages.mk_MK.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Close @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Previous @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Next @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Previous month @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Next month @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Close @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Select month @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Hours @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Select year @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minutes @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 First @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Increment hours @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Previous @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrement hours @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Next @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Increment minutes @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Last @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrement minutes @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Seconds @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Increment seconds @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrement seconds @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.ms_MY.xlf b/src-ui/src/locale/messages.ms_MY.xlf index ae975d822..049e8613f 100644 --- a/src-ui/src/locale/messages.ms_MY.xlf +++ b/src-ui/src/locale/messages.ms_MY.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Close @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Previous @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Next @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Previous month @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Next month @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Close @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Select month @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Hours @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Select year @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minutes @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 First @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Increment hours @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Previous @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrement hours @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Next @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Increment minutes @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Last @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrement minutes @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Seconds @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Increment seconds @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrement seconds @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index 4311c0519..4dd03c98d 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Sluiten @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Vorige @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Volgende @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Vorige maand @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Volgende maand @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 UU @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sluiten @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Selecteer maand @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Uren @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Jaar selecteren @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minuten @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Eerste @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Uren verhogen @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Vorige @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Uren verlagen @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Volgende @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minuten verhogen @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Laatste @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minuten verlagen @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Seconden @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Seconden verhogen @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Seconden verlagen @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index d10052690..1670b9575 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Lukk @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Forrige @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Neste @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Forrige måned @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Neste måned @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Lukk @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Velg en måned @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Timer @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Velg år @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minutter @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Først @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Økende timer @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Forrige @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Reduksjon i timer @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Neste @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Økende minutter @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Siste @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Reduksjon i minutter @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekunder @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Tilleggstid i sekund @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Reduksjon sekunder @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index 88236b107..fa73b00cf 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Zamknij @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Poprzedni @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Następny @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Poprzedni miesiąc @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Następny miesiąc @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 GG @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zamknij @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Wybierz miesiąc @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Godziny @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Wybierz rok @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minuty @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Pierwszy @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zwiększ godziny @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Poprzedni @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zmniejsz godziny @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Następny @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zwiększ minuty @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Ostatni @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zmniejsz minuty @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekundy @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zwiększa sekundy @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zmniejsz sekundy @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 @@ -892,7 +892,7 @@ src/app/components/admin/logs/logs.component.html 60 - Jump to bottom + Przejdź na dół Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -3952,7 +3952,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts 121 - Previous week + Poprzedni tydzień Previous month @@ -3960,7 +3960,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts 135 - Previous month + Poprzedni miesiąc Previous quarter @@ -3968,7 +3968,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts 141 - Previous quarter + Poprzedni kwartał Previous year @@ -3976,7 +3976,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts 155 - Previous year + Poprzedni rok Matching algorithm diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index 7d76efb02..3a183e5e9 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Fechar @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Anterior @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Próximo @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Mês anterior @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Próximo mês @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Fechar @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Selecione o mês @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Horas @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Selecione o ano @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minutos @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Primeiro @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Acrescentar horas @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Anterior @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Deduzir horas @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Próximo @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Acrescentar minutos @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Último @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Deduzir minutos @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Segundos @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Acrescentar segundos @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Deduzir segundos @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index d303b67e3..2007ea9b3 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Fechar @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Anterior @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Seguinte @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Mês anterior @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Mês seguinte @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Fechar @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Selecionar mês @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Horas @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Selecionar ano @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minutos @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Primeiro @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrementar horas @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Anterior @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Diminuir horas @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Seguinte @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrementar minutos @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Último @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Diminuir minutos @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Segundos @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrementar segundos @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Diminuir segundos @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index 15278aa0f..3b5f99bd6 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Închide @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Anterior @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Următor @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Luna precedentă @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Luna următoare @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Închide @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Selectați luna @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Ore @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Selectați anul @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minute @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Primul @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrementare ore @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Anteriorul @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrementare oră @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Următor @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrementare minute @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Ultima @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrementare minute @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Secunde @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Incrementare secunde @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Decrementare secunde @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index 7ad08bc91..76e56345f 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Закрыть @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Предыдущий @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Следующий @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Предыдущий месяц @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Следующий месяц @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ЧЧ @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Закрыть @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Выберите месяц @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Часы @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Выберите год @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Минуты @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Первый @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Увеличить часы @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Предыдущий @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Уменьшить часы @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Следующий @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Увеличить минуты @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Последний @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Уменьшить минуты @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 СС @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Секунды @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Увеличить секунды @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Уменьшить секунды @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf index b627a0288..b7f2f64ad 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Zavrieť @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Predchádzajúci @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Ďalší @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Predchádzajúci mesiac @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Nasledujúci mesiac @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zavrieť @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Vyberte mesiac @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Hodín @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Vyberte rok @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minúty @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Prvý @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Navýšiť hodiny @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Predchádzajúci @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Znížiť hodiny @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Ďalší @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Navýšiť minúty @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Posledný @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Znížiť minúty @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekundy @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Navýšiť sekundy @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Znížiť sekundy @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index f1f7902ff..2fa2371c5 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Zapri @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Prejšnji @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Naslednji @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Prejšnji mesec @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Naslednji mesec @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zapri @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Izberi mesec @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Ura @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Izberi leto @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minuta @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Prvi @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Povečanje ur @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Prejšnji @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zmanjšanje ur @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Naslednja @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Povečanje minut @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zadnji @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zmanjšanje minut @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekunde @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Povečanje sekund @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zmanjšanje sekund @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 @@ -892,7 +892,7 @@ src/app/components/admin/logs/logs.component.html 60 - Jump to bottom + Skoči na konec Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -3952,7 +3952,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts 121 - Previous week + Prejšnji teden Previous month @@ -3960,7 +3960,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts 135 - Previous month + Prejšnji mesec Previous quarter @@ -3968,7 +3968,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts 141 - Previous quarter + Prejšnje četrtletje Previous year @@ -3976,7 +3976,7 @@ src/app/components/common/dates-dropdown/dates-dropdown.component.ts 155 - Previous year + Prejšnje leto Matching algorithm diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index bd792aa3f..3404a03a4 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Zatvori @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Prethodni @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Sledeći @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Prethodni mesec @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Naredni mesec @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Zatvori @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Odaberi mesec @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Časovi @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Odaberi godinu @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minuta @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Prvi @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Povećaj sate @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Prethodni @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Smanji sate @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sledeći @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Povećaj minute @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Poslednji @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Smanji minute @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekundi @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Povećaj sekunde @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Smanji sekunde @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index 86a6ed5ef..354d164ff 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Stäng @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Föregående @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Nästa @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Föregående månad @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Nästa månad @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Stäng @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Välj månad @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Timmar @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Välj år @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minuter @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Första @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Öka timmar @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Föregående @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minska timmar @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Nästa @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Öka minuter @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sista @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minska minuter @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sekunder @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Öka sekunder @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Minska sekunder @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf index ab0af9023..c7c9f651c 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 ปิด @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 ก่อนหน้า @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 ถัดไป @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 เดือนก่อนหน้า @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 เดือนถัดไป @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ชช @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ปิด @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 เลือกเดือน @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ชั่วโมง @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 นน @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 เลือกปี @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 นาที @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 แรก @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 เพิ่มชั่วโมง @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ก่อนหน้า @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ลดชั่วโมง @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ต่อไป @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 เพิ่มนาที @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ล่าสุด @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ลดนาที @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 วว @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 วินาที @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 เพิ่มวินาที @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ลดวินาที @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index 1d6fbd646..189e8ac94 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Kapat @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Önceki @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Sonraki @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Önceki ay @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Sonraki ay @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Kapat @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Ay seçin @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Saat @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Yıl seçin @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Dakika @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 İlk @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Saati arttır @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Önceki @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Saati azalt @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Sonraki @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Dakikayı arttır @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Son @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Dakikayı azalt @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Saniye @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Saniyeyi arttır @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Saniyeyi azalt @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 @@ -308,7 +308,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 58 - Belgeyi aç + Belge aç Could not add : @@ -476,7 +476,7 @@ src/app/app.component.ts 203 - Herhangi bir filtre kombinasyonu, daha sonra gösterge panelinde ve/veya kenar çubuğunda görüntülenebilen bir “görünüm” olarak kaydedilebilir. + Herhangi bir filtre kombinasyonu, daha sonra kontrol panelinde ve/veya kenar çubuğunda görüntülenebilen bir “görünüm” olarak kaydedilebilir. Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -484,7 +484,7 @@ src/app/app.component.ts 208 - Künyeler, muhataplar, belge türleri ve depolama yollarının tümü bu sayfalar kullanılarak yönetilebilir. Bunlar ayrıca belge düzenleme görünümünden de oluşturulabilirler. + Etiketler, muhataplar, belge türleri ve depolama dizinlerinin tümü bu sayfaları kullanılarak yönetilebilir. Ayrıca belge düzenleme görünümünden de oluşturulabilirler. Manage e-mail accounts and rules for automatically importing documents. @@ -572,7 +572,7 @@ src/app/components/admin/config/config.component.html 25 - Bu ayar hakkındaki belgeyi okuyun + Bu ayar hakkındaki dokümantasyonu okuyun Enable @@ -596,7 +596,7 @@ src/app/components/document-detail/document-detail.component.html 374 - Gözardı et + Vazgeç Save @@ -764,7 +764,7 @@ src/app/components/admin/logs/logs.component.html 17 - satırlar + satır Auto refresh @@ -892,7 +892,7 @@ src/app/components/admin/logs/logs.component.html 60 - Jump to bottom + En aşağı git Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. @@ -968,7 +968,7 @@ src/app/components/admin/settings/settings.component.html 68 - Tarih Gösterimi + Tarih gösterimi Date format @@ -1056,7 +1056,7 @@ src/app/components/admin/settings/settings.component.html 139 - Karanlık modunda küçük resimleri tersine çevir + Karanlık modda küçük resimlerin renklerini tersine çevir Theme Color @@ -1252,7 +1252,7 @@ src/app/components/admin/settings/settings.component.html 221 - Gelişmiş arama sonuçlarını dahil etmeyin + Gelişmiş arama sonuçlarını dahil etme Full search links to @@ -1292,7 +1292,7 @@ src/app/components/admin/settings/settings.component.html 237 - Toplu düzenlemec + Toplu düzenleme Show confirmation dialogs @@ -1300,7 +1300,7 @@ src/app/components/admin/settings/settings.component.html 240 - Onaylama iletişim kutuları göster + Onaylama kutularını göster Apply on close @@ -1308,7 +1308,7 @@ src/app/components/admin/settings/settings.component.html 241 - Kapanışta uygula + Kapatırken uygula Notes @@ -1480,7 +1480,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 57 - Kullanıcı: + Kullanıcılar: Groups: @@ -1752,7 +1752,7 @@ src/app/components/app-frame/app-frame.component.ts 180 - Ayarlar kaydedilirken bir hata oluştu. + Ayarlar kaydedilirken bir hata meydana geldi. File Tasks @@ -2132,7 +2132,7 @@ src/app/components/admin/tasks/tasks.component.ts 111 - Tümünü yoksay + Tümünü yok say Confirm Dismiss All @@ -2140,7 +2140,7 @@ src/app/components/admin/tasks/tasks.component.ts 152 - İptal etmeyi onayla + Tümünü Susturmayı Onayla Dismiss all tasks? @@ -2148,7 +2148,7 @@ src/app/components/admin/tasks/tasks.component.ts 153 - Tüm işlerini iptal et? + Tüm işleri yok say? Error dismissing tasks @@ -2156,7 +2156,7 @@ src/app/components/admin/tasks/tasks.component.ts 161 - Görevleri iptal ederken hatayla karşılașıldı + Görevleri yok sayarken bir hata meydana geldi Error dismissing task @@ -2164,7 +2164,7 @@ src/app/components/admin/tasks/tasks.component.ts 170 - Görevi iptal ederken hatayla karşılașıldı + Görevi yok sayarken bir hata meydana geldi queued @@ -2212,7 +2212,7 @@ src/app/components/app-frame/app-frame.component.html 241 - Çöp kutusu + Çöp Kutusu Manage trashed documents that are pending deletion. @@ -2556,7 +2556,7 @@ src/app/components/admin/trash/trash.component.ts 131 - Belge(ler) silinirken hata oluştu + Belge(ler) silinirken bir hata meydana geldi Document "" restored @@ -2572,7 +2572,7 @@ src/app/components/admin/trash/trash.component.ts 155 - "" belgesi geri yüklenirlen hata oluştu + "" belgesi geri yüklenirken bir hata meydana geldi Document(s) restored @@ -2588,7 +2588,7 @@ src/app/components/admin/trash/trash.component.ts 173 - Belge(leri) geri yüklerken hata oluştu + Belge(leri) geri yüklenirken bir hata meydana geldi Users & Groups @@ -2612,7 +2612,7 @@ src/app/components/admin/users-groups/users-groups.component.html 4 - Grup yada kullanıcı oluştur, düzenle yada sil. + Grup yada kullanıcı; oluştur, düzenle yada sil. Users @@ -2792,7 +2792,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 135 - Kullanıcı kaydedilirken hata oluştu. + Kullanıcı kaydedilirken bir hata meydana geldi. Confirm delete user account @@ -2892,7 +2892,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 188 - Grup kaydedilirken hata oluştu. + Grup kaydedilirken bir hata meydana geldi. Confirm delete user group @@ -2992,7 +2992,7 @@ src/app/components/app-frame/app-frame.component.html 141 - Belgeleri aç + Açık Belgeler Close all @@ -3012,7 +3012,7 @@ src/app/components/app-frame/app-frame.component.html 172 - Yönet + Yönetim Correspondents @@ -3116,7 +3116,7 @@ src/app/components/manage/custom-fields/custom-fields.component.html 2 - Özel alanlar + Özel Alanlar Workflows @@ -3640,7 +3640,7 @@ src/app/components/manage/custom-fields/custom-fields.component.ts 94 - Alan kaydedilirken hata oluştu. + Alan kaydedilirken bir hata meydana geldi. Today @@ -3724,7 +3724,7 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html 101 - Doğru + Evet False @@ -3740,7 +3740,7 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html 102 - Yanlış + Hayır Search docs... @@ -4502,7 +4502,7 @@ tüm krite src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 59 - Kural ile Sahip ata + Kuraldan sahip ata Assign document type @@ -4770,7 +4770,7 @@ tüm krite src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html 13 - İlgili belgeyi "<a target='_blank' href='https://docs.paperless-ngx.com/advanced_usage/#file-name-handling'>" incele</a>. + İlgili belgeyi <a target='_blank' href='https://docs.paperless-ngx.com/advanced_usage/#file-name-handling'>incele</a>. Preview @@ -5198,7 +5198,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 158 - Trigger for documents that match all filters specified below. + Aşağıda belirtilen tüm filtrelerle eşleşen belgeler için tetikleyici. Filter filename @@ -5238,7 +5238,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 164 - Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> + Bu dizine uyan belgelere uygulanır. * olarak belirtilen joker karakterlere izin verilir. Büyük-küçük harf duyarsızdır.</a> Filter mail rule @@ -5254,7 +5254,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 165 - Apply to documents consumed via this mail rule. + Bu posta kuralı aracılığıyla kullanılan belgelere uygulayın. Content matching algorithm @@ -5262,7 +5262,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 168 - Content matching algorithm + İçerik eşleştirme algoritması Content matching pattern @@ -5270,7 +5270,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 170 - Content matching pattern + İçerik eşleştirme modeli Advanced Filters @@ -5294,7 +5294,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 195 - No advanced workflow filters defined. + Gelişmiş bir iş akışı filtresi tanımlanmamıştır. Complete the custom field query configuration. @@ -5302,7 +5302,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 224,226 - Complete the custom field query configuration. + Özel alan sorgu yapılandırmasını tamamlayın. Action type @@ -5326,7 +5326,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 263 - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + Bazı yer tutucular içerebilir, bkz. <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokümantasyon</a>. Assign tags @@ -5358,7 +5358,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 272 - Sahip Ata + Sahip ata Assign view permissions @@ -5830,7 +5830,7 @@ tüm krite src/app/components/common/email-document-dialog/email-document-dialog.component.html 37 - Some email servers may reject messages with large attachments. + Bazı e-posta sunucuları büyük ekleri olan mesajları reddedebilir. Email sent @@ -5854,7 +5854,7 @@ tüm krite src/app/components/common/email-document-dialog/email-document-dialog.component.ts 70 - Belgeyi postalarken hata oluştu + Belgeyi postalarken bir hata meydana geldi Include @@ -6176,7 +6176,7 @@ tüm krite src/app/components/common/input/switch/switch.component.html 39 - Note: value has not yet been set and will not apply until explicitly changed + Not: Değer henüz belirlenmemiştir ve değiştirilene kadar geçerli olmayacaktır Add tag @@ -6620,7 +6620,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 114 - Doğrulama uygulamanızla QR kodunu tarayın ve ardından aşağıdaki kodu girin + Doğrulama uygulamanızla QR kodunu tarayın ve ardından aşağıya kodu girin Authenticator secret @@ -6636,7 +6636,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 118 - You can store this secret and use it to reinstall your authenticator app at a later time. + Bu gizli bilgiyi saklayabilir ve daha sonra kimlik doğrulama uygulamanızı yeniden yüklemek için kullanabilirsiniz. Code @@ -6652,7 +6652,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 140 - Recovery codes will not be shown again, make sure to save them. + Kurtarma kodları bir daha gösterilmeyecektir, mutlaka kaydediniz. Copy codes @@ -6660,7 +6660,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 158 - Copy codes + Kodları kopyala Emails must match @@ -6700,7 +6700,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 225 - Error generating auth token + Yetkilendirme tokeni oluştururken bir hatayla karşılaşıldı Error disconnecting social account @@ -6708,7 +6708,7 @@ tüm krite src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 250 - Error disconnecting social account + Sosyal hesapları kaldırırken bir hata ile karşılaşıldı Error fetching TOTP settings @@ -6764,7 +6764,7 @@ tüm krite src/app/components/common/share-links-dialog/share-links-dialog.component.html 8,10 - No existing links + Herhangi bir mevcut link bulunmuyor Share @@ -6788,7 +6788,7 @@ tüm krite src/app/components/common/share-links-dialog/share-links-dialog.component.html 52 - Expires + Son Kullanım Tarihi 1 day @@ -6844,7 +6844,7 @@ tüm krite src/app/components/common/share-links-dialog/share-links-dialog.component.ts 83 - Linkleri getirirken hata oluştu + Linkler alınırken bir hata meydana geldi days @@ -6860,7 +6860,7 @@ tüm krite src/app/components/common/share-links-dialog/share-links-dialog.component.ts 131 - Linki silerken hata oluştu + Linki silerken bir hata meydana geldi Error creating link @@ -6868,7 +6868,7 @@ tüm krite src/app/components/common/share-links-dialog/share-links-dialog.component.ts 159 - Linki oluşturma hatası + Link oluşturulurken bir hata meydana geldi Environment @@ -6964,7 +6964,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 76 - Göç Durumu + Veritabanı İşlemleri Durumu Up to date @@ -6980,7 +6980,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 85 - Latest Migration + En Son Uygulanan Veritabanı İşlemleri Pending Migrations @@ -6988,7 +6988,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 87 - Pending Migrations + Bekleyen Veritabanı İşlemleri Tasks Queue @@ -7068,7 +7068,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 218 - Last Trained + Son Eğitim Tarihi Sanity Checker @@ -7076,7 +7076,7 @@ tüm krite src/app/components/common/system-status-dialog/system-status-dialog.component.html 223 - Sanity Checker + Son Geçerlilik Kontrol Edilme Tarihi Last Run @@ -7188,7 +7188,7 @@ tüm krite src/app/components/document-list/document-list.component.html 363 - Filter by document type + Belge türüne göre filtrele Filter by storage path @@ -7204,7 +7204,7 @@ tüm krite src/app/components/document-list/document-list.component.html 370 - Filter by storage path + Depolama dizinine göre filtrele Filter by owner @@ -7394,7 +7394,7 @@ tüm krite src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 4 - Paperless-ngx'in kullanımı ve yapılandırılması hakkında daha fazla bilgiye her zaman documentation adresinden ulaşabilirsiniz. + Paperless-ngx'in kullanımı ve yapılandırılması hakkında daha fazla bilgiye her zaman dokümantasyon adresinden ulaşabilirsiniz. Thanks for being a part of the Paperless-ngx community! @@ -7438,7 +7438,7 @@ tüm krite src/app/components/document-detail/document-detail.component.html 7,8 - of + 'dan/den - @@ -7446,7 +7446,7 @@ tüm krite src/app/components/document-detail/document-detail.component.html 11 - - + - + @@ -7454,7 +7454,7 @@ tüm krite src/app/components/document-detail/document-detail.component.html 19 - + + + Download original @@ -7474,7 +7474,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.html 91 - Reprocess + Yeniden İşle Print @@ -7794,7 +7794,7 @@ tüm krite src/app/components/document-detail/document-detail.component.html 369 - Kaydet & sonraki + Kaydet ve sonrakine geç Save & close @@ -7826,7 +7826,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 416,418 - An error occurred loading content: + İçerik yüklenirken bir hata ile karşılaşıldı: Document changes detected @@ -7842,7 +7842,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 451 - The version of this document in your browser session appears older than the existing version. + Tarayıcı oturumunuzdaki bu belgenin sürümü, mevcut sürümden daha eski görünüyor. Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -7850,7 +7850,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 452 - Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. + Belgeyi buraya kaydetmek, yapılan diğer değişikliklerin üzerine yazabilir. Mevcut sürümü geri yüklemek için değişikliklerinizi geri alın veya belgeyi kapatın. Ok @@ -7910,7 +7910,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 669 - Metaveri alınırken hata oluştu + Metaveri alınırken bir hata meydana geldi Error retrieving suggestions. @@ -7918,7 +7918,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 698 - Önerileri getirirken hata oluştu. + Öneriler getirilirken bir hata meydana geldi. Document "" saved successfully. @@ -7938,7 +7938,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 900 - Error saving document "" + Belgeyi kaydederken bir hata ile karşılaşıldı "" Error saving document @@ -7954,7 +7954,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 982 - Do you really want to move the document "" to the trash? + belgesini gerçekten çöp kutusuna taşımak istiyor musunuz? Documents can be restored prior to permanent deletion. @@ -7966,7 +7966,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 754 - Documents can be restored prior to permanent deletion. + Belgeler kalıcı olarak silinmeden önce geri yüklenebilir. Move to trash @@ -7986,7 +7986,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 1004 - Belge silinirken hata oluştu + Belge silinirken bir hata meydana geldi Reprocess confirm @@ -8006,7 +8006,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 1025 - This operation will permanently recreate the archive file for this document. + Bu işlem, bu belge için arşiv dosyasını kalıcı olarak yeniden oluşturacaktır. The archive file will be re-generated with the current settings. @@ -8014,7 +8014,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 1026 - The archive file will be re-generated with the current settings. + Arşiv dosyası mevcut ayarlarla yeniden oluşturulacaktır. 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. @@ -8022,7 +8022,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 1036 - 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. + "" için yeniden işleme işlemi arka planda başlayacaktır. İşlem tamamlandıktan sonra bu belgeyi kapatıp yeniden açtıktan veya yeniden yükledikten sonra yeni içeriği görebilirsiniz. Error executing operation @@ -8030,7 +8030,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 1047 - Error executing operation + İşlemi gerçekleştirirken bir hata ile karşılaşıldı Error downloading document @@ -8038,7 +8038,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 1096 - Error downloading document + Belge indirilirken bir hata meydana geldi Page Fit @@ -8046,7 +8046,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 1173 - Page Fit + Sayfa Sığdır PDF edit operation for "" will begin in the background. @@ -8054,7 +8054,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 1411 - PDF edit operation for "" will begin in the background. + "" için PDF düzenleme işlemleri arka planda başlayacak. Error executing PDF edit operation @@ -8062,7 +8062,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 1423 - Error executing PDF edit operation + PDF düzenleme işlemleri uygulanırken bir hata ile karşılaşıldı Print failed. @@ -8078,7 +8078,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 1472 - Error loading document for printing. + Belgeyi yazdırmaya hazırlarken bir hata ile karşılaşıldı. An error occurred loading tiff: @@ -8090,7 +8090,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts 1541 - An error occurred loading tiff: + tiff'i yüklenirken bir hata meydana geldi No entries found. @@ -8178,7 +8178,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.html 62 - Filter custom fields + Özel alanları filtrele Set values @@ -8186,7 +8186,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.html 70 - Set values + Değerleri ayarla Rotate @@ -8242,7 +8242,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 290 - Error executing bulk operation + Toplu işlemler çalıştırılırken bir hata ile karşılaşıldı "" @@ -8280,7 +8280,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 405 - Etiket atanmayi doğrulayın + Etiket atanmasını onaylayın This operation will add the tag "" to selected document(s). @@ -8296,7 +8296,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 416,418 - This operation will add the tags to selected document(s). + Bu işlem etiketlerini seçili belge veya belgelere ekleyecektir. This operation will remove the tag "" from selected document(s). @@ -8312,7 +8312,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 429,431 - This operation will remove the tags from selected document(s). + Bu işlem etiketlerini seçili belge veya belgelerden kaldıracaktır. This operation will add the tags and remove the tags on selected document(s). @@ -8376,7 +8376,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 550 - Confirm storage path assignment + Depolama dizinlerini atamayı onaylayın This operation will assign the storage path "" to selected document(s). @@ -8384,7 +8384,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 552 - This operation will assign the storage path "" to selected document(s). + Bu işlem, depolama dizinini, seçilmiş belgeye atayacaktır. This operation will remove the storage path from selected document(s). @@ -8392,7 +8392,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 554 - This operation will remove the storage path from selected document(s). + Bu işlem belgeden depolama dizinini kaldıracaktır. Confirm custom field assignment @@ -8400,7 +8400,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 583 - Confirm custom field assignment + Özel alan atamasını onaylayın This operation will assign the custom field "" to selected document(s). @@ -8408,7 +8408,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 589 - This operation will assign the custom field "" to selected document(s). + Bu işlem, özel alanını, seçilmiş belgeye atayacaktır. This operation will assign the custom fields to selected document(s). @@ -8416,7 +8416,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 594,596 - This operation will assign the custom fields to selected document(s). + Bu işlem, özel alanlarını, seçilmiş belgeye atayacaktır. This operation will remove the custom field "" from selected document(s). @@ -8424,7 +8424,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 602 - This operation will remove the custom field "" from selected document(s). + Bu işlem alanını belgeden kaldıracaktır. This operation will remove the custom fields from selected document(s). @@ -8432,7 +8432,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 607,609 - This operation will remove the custom fields from selected document(s). + Bu işlem alanlarını belgeden kaldıracaktır. This operation will assign the custom fields and remove the custom fields on selected document(s). @@ -8440,7 +8440,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 611,615 - This operation will assign the custom fields and remove the custom fields on selected document(s). + Bu işlem, alanlarını atayacak ve alanlarını seçili belgeden kaldıracaktır. Move selected document(s) to the trash? @@ -8448,7 +8448,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 753 - Move selected document(s) to the trash? + Seçilmiş belgeyi çöp kutusuna taşımak istiyor musunuz? This operation will permanently recreate the archive files for selected document(s). @@ -8456,7 +8456,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 795 - This operation will permanently recreate the archive files for selected document(s). + Bu işlem, seçilmiş belge için arşiv dosyasını kalıcı olarak yeniden oluşturacaktır. The archive files will be re-generated with the current settings. @@ -8464,7 +8464,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 796 - The archive files will be re-generated with the current settings. + Arşiv dosyaları mevcut ayarlarla yeniden oluşturulacaktır. Rotate confirm @@ -8472,7 +8472,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 828 - Rotate confirm + Döndürmeyi onaylayın This operation will permanently rotate the original version of document(s). @@ -8480,7 +8480,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 829 - This operation will permanently rotate the original version of document(s). + Bu işlem belgede, orijinal sürümündeki sayfaları kalıcı olarak döndürecektir. Merge confirm @@ -8488,7 +8488,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 848 - Merge confirm + Birleştirmeyi onaylayın This operation will merge selected documents into a new document. @@ -8496,7 +8496,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.ts 849 - This operation will merge selected documents into a new document. + Bu işlem belgeyi yeni bir belgede birleştirecektir. Merged document will be queued for consumption. @@ -8536,7 +8536,7 @@ tüm krite src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html 13 - Select custom fields + Özel alanları seçin {VAR_PLURAL, plural, =1 {This operation will also remove 1 custom field from the selected documents.} other {This operation will also @@ -8581,7 +8581,7 @@ tüm krite src/app/components/document-list/document-card-small/document-card-small.component.html 91,92 - Created: + Oluşturulmuş: Added: @@ -8661,7 +8661,7 @@ tüm krite src/app/components/document-list/document-card-small/document-card-small.component.html 20 - Toggle tag filter + Etiket filtresini aç/kapat Toggle correspondent filter @@ -8677,7 +8677,7 @@ tüm krite src/app/components/document-list/document-card-small/document-card-small.component.html 59 - Toggle document type filter + Belge türü filtresini aç/kapat Toggle storage path filter @@ -8685,7 +8685,7 @@ tüm krite src/app/components/document-list/document-card-small/document-card-small.component.html 66 - Toggle storage path filter + Depolama dizini filtresini aç/kapat Select @@ -8837,7 +8837,7 @@ tüm krite src/app/components/document-list/document-list.component.html 169 - Error while loading documents + Belgeleri yüklerken bir hata ile karşılaşıldı Sort by ASN @@ -8905,7 +8905,7 @@ tüm krite src/app/data/document.ts 96 - Sahibi + Sahip Sort by notes @@ -8989,7 +8989,7 @@ tüm krite src/app/components/document-list/document-list.component.html 297,298 - Sort by + göre sırala Edit document @@ -9053,7 +9053,7 @@ tüm krite src/app/components/document-list/document-list.component.ts 391 - Failed to save view "". + "" görünümünü kaydederken bir hata ile karşılaşıldı. View "" created successfully. @@ -9157,7 +9157,7 @@ tüm krite src/app/components/document-list/filter-editor/filter-editor.component.ts 289,293 - Document type: + Belge türü: Without document type @@ -9173,7 +9173,7 @@ tüm krite src/app/components/document-list/filter-editor/filter-editor.component.ts 301,305 - Storage path: + Depolama dizini: Without storage path @@ -9189,7 +9189,7 @@ tüm krite src/app/components/document-list/filter-editor/filter-editor.component.ts 311,313 - Tag: + Etiket: Without any tag @@ -9197,7 +9197,7 @@ tüm krite src/app/components/document-list/filter-editor/filter-editor.component.ts 317 - Herhangi bir künye olmayan + Etiketsiz Custom fields query @@ -9285,7 +9285,7 @@ tüm krite src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 13 - Filter rules error occurred while saving this view + Bu görünümü kaydederken filtre kuralları ile ilgili bir hata meydana geldi The error returned was @@ -9373,7 +9373,7 @@ tüm krite src/app/components/file-drop/file-drop.component.ts 142 - Failed to read dropped items: + Bırakılan öğeleri okurken bir hata meydana geldi: correspondent @@ -9413,7 +9413,7 @@ tüm krite src/app/components/manage/custom-fields/custom-fields.component.html 4 - Customize the data fields that can be attached to documents. + Belgelere eklenebilecek veri alanlarını özelleştirin. Add Field @@ -9453,7 +9453,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.html 117 - Filter Documents () + Belgeleri Filtrele () No fields defined. @@ -9593,7 +9593,7 @@ tüm krite src/app/components/manage/mail/mail.component.html 103 - Mail rules + E-posta kuralları Add Rule @@ -9629,7 +9629,7 @@ tüm krite src/app/components/manage/mail/mail.component.html 143 - View Processed Mail + İşlenmiş Postaları Görüntüle No mail rules defined. @@ -9637,7 +9637,7 @@ tüm krite src/app/components/manage/mail/mail.component.html 183 - No mail rules defined. + Tanımlanmış bir posta kuralı mevcut değil. Error retrieving mail accounts @@ -9645,7 +9645,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 105 - Error retrieving mail accounts + Posta hesaplarından bilgi alırken bir hata meydana geldi Error retrieving mail rules @@ -9653,7 +9653,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 127 - Error retrieving mail rules + Posta kurallarını yüklerken bir hata meydana geldi OAuth2 authentication success @@ -9661,7 +9661,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 135 - OAuth2 authentication success + OAuth2 yetkilendirmesi başarılı OAuth2 authentication failed, see logs for details @@ -9669,7 +9669,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 146 - OAuth2 authentication failed, see logs for details + OAuth2 yetkilendirmesi ile ilgili bir hata meydana geldi, detaylar için günlüklere göz atın Saved account "". @@ -9677,7 +9677,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 170 - Saved account "". + "" hesabı kaydedildi. Error saving account. @@ -9685,7 +9685,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 182 - Error saving account. + Hesabı kaydederken bir hata ile karşılaşıldı. Confirm delete mail account @@ -9701,7 +9701,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 191 - This operation will permanently delete this mail account. + Bu işlem, bu posta hesabını kalıcı olarak silecektir. Deleted mail account "" @@ -9709,7 +9709,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 201 - Deleted mail account "" + "" posta hesabı silindi Error deleting mail account "". @@ -9717,7 +9717,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 212 - Error deleting mail account "". + "" posta hesabı silinirken bir hata meydana geldi. Processing mail account "" @@ -9725,7 +9725,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 224 - Processing mail account "" + "" posta hesabı işleniyor Error processing mail account "" @@ -9733,7 +9733,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 229 - Error processing mail account "" + "" posta hesabı işlenirken bir hata meydana geldi Saved rule "". @@ -9741,7 +9741,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 247 - Saved rule "". + "" kuralı kaydedildi. Error saving rule. @@ -9749,7 +9749,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 258 - Error saving rule. + Kuralı kaydedilirken bir hata meydana geldi. Rule "" enabled. @@ -9757,7 +9757,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 274 - Rule "" enabled. + "" kuralı aktifleştirildi. Rule "" disabled. @@ -9765,7 +9765,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 275 - Rule "" disabled. + "" kuralı devre dışı bırakıldı. Error toggling rule "". @@ -9773,7 +9773,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 280 - Error toggling rule "". + Kuralı açarken veya kapatırken bir hata meydana geldi "". Confirm delete mail rule @@ -9781,7 +9781,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 291 - Confirm delete mail rule + Posta hesabı kuralının silinmesini onaylayın This operation will permanently delete this mail rule. @@ -9789,7 +9789,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 292 - This operation will permanently delete this mail rule. + Bu işlem, bu posta kuralını kalıcı olarak silecektir. Deleted mail rule "" @@ -9797,7 +9797,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 302 - Deleted mail rule "" + "" posta kuralı silindi Error deleting mail rule "". @@ -9805,7 +9805,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 313 - Error deleting mail rule "". + "" posta kuralı silinirken bir hata meydana geldi. Permissions updated @@ -9813,7 +9813,7 @@ tüm krite src/app/components/manage/mail/mail.component.ts 337 - Permissions updated + İzinler güncellendi Error updating permissions @@ -9825,7 +9825,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.ts 349 - Error updating permissions + İzinler güncellenirken bir hata meydana geldi Processed Mail for @@ -9833,7 +9833,7 @@ tüm krite src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 2 - Processed Mail for + için postalar işlendi No processed email messages found. @@ -9841,7 +9841,7 @@ tüm krite src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 20 - No processed email messages found. + İşlenmiş posta mesajı bulunamadı. Received @@ -9849,7 +9849,7 @@ tüm krite src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 33 - Received + Teslim Alındı Processed @@ -9857,7 +9857,7 @@ tüm krite src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 34 - Processed + İşlendi Processed mail(s) deleted @@ -9865,7 +9865,7 @@ tüm krite src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts 72 - Processed mail(s) deleted + İşlenmiş posta veya postalar silindi Filter by: @@ -9945,7 +9945,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.html 67 - {VAR_PLURAL, plural, =1 {Bir } other { toplam }} + {VAR_PLURAL, plural, =1 {Bir } other {Toplam }} Automatic @@ -9965,7 +9965,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.ts 196 - Successfully created . + başarıyla oluşturuldu. Error occurred while creating . @@ -9973,7 +9973,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.ts 201 - Error occurred while creating . + oluşturulurken bir hata meydana geldi. Successfully updated "". @@ -9981,7 +9981,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.ts 216 - Successfully updated "". + "" başarıyla güncellendi. Error occurred while saving . @@ -9989,7 +9989,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.ts 221 - Error occurred while saving . + kaydederken bir hata meydana geldi. Associated documents will not be deleted. @@ -9997,7 +9997,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.ts 241 - Associated documents will not be deleted. + İliştirilmiş belgeler silinmeyecektir. Error while deleting element @@ -10005,7 +10005,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.ts 257 - Error while deleting element + Öğeyi silerken bir hata meydana geldi Permissions updated successfully @@ -10149,7 +10149,7 @@ tüm krite src/app/components/manage/tag-list/tag-list.component.ts 45 - künye + etiket tags @@ -10157,7 +10157,7 @@ tüm krite src/app/components/manage/tag-list/tag-list.component.ts 46 - künyeler + etiketler Do you really want to delete the tag ""? @@ -10165,7 +10165,7 @@ tüm krite src/app/components/manage/tag-list/tag-list.component.ts 61 - "" künyesini silmeyi gerçekten istiyor musunuz? + "" etiketini silmeyi gerçekten istiyor musunuz? Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow. @@ -10173,7 +10173,7 @@ tüm krite src/app/components/manage/workflows/workflows.component.html 4 - Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow. + İş akışlarını kullanarak, olaylar bir iş akışını tetiklediğinde Paperless-ngx'in davranışını özelleştirin. Add Workflow @@ -10197,7 +10197,7 @@ tüm krite src/app/components/manage/workflows/workflows.component.ts 90 - Saved workflow "". + "" iş akışı kaydedildi. Error saving workflow. @@ -10574,7 +10574,7 @@ tüm krite src/app/data/paperless-config.ts 76 - Output Type + Çıktı Türü Language @@ -10582,7 +10582,7 @@ tüm krite src/app/data/paperless-config.ts 84 - Language + Dil Mode @@ -10590,7 +10590,7 @@ tüm krite src/app/data/paperless-config.ts 98 - Mode + Mod Skip Archive File @@ -10598,7 +10598,7 @@ tüm krite src/app/data/paperless-config.ts 106 - Skip Archive File + Arşiv Dosyasını Atla Image DPI @@ -10606,7 +10606,7 @@ tüm krite src/app/data/paperless-config.ts 114 - Image DPI + Görüntü DPI Clean @@ -10614,7 +10614,7 @@ tüm krite src/app/data/paperless-config.ts 121 - Clean + Sıfırdan İşle Deskew @@ -10622,7 +10622,7 @@ tüm krite src/app/data/paperless-config.ts 129 - Deskew + Deskew Rotate Pages @@ -10630,7 +10630,7 @@ tüm krite src/app/data/paperless-config.ts 136 - Rotate Pages + Sayfaları Döndür Rotate Pages Threshold @@ -10638,7 +10638,7 @@ tüm krite src/app/data/paperless-config.ts 143 - Rotate Pages Threshold + Sayfalar Döndürmek İçin Gerekli Eşik Değeri Max Image Pixels @@ -10646,7 +10646,7 @@ tüm krite src/app/data/paperless-config.ts 150 - Max Image Pixels + Maksimum Görüntü Pikseli Color Conversion Strategy @@ -10654,7 +10654,7 @@ tüm krite src/app/data/paperless-config.ts 157 - Color Conversion Strategy + Renk Dönüştürme Stratejisi OCR Arguments @@ -10662,7 +10662,7 @@ tüm krite src/app/data/paperless-config.ts 165 - OCR Arguments + OCR Argümanları Application Logo @@ -10670,7 +10670,7 @@ tüm krite src/app/data/paperless-config.ts 172 - Application Logo + Sistemin Logosu Application Title @@ -10678,7 +10678,7 @@ tüm krite src/app/data/paperless-config.ts 179 - Application Title + Sistemin Başlığı Enable Barcodes @@ -10686,7 +10686,7 @@ tüm krite src/app/data/paperless-config.ts 186 - Enable Barcodes + Barkodları Etkinleştir Enable TIFF Support @@ -10694,7 +10694,7 @@ tüm krite src/app/data/paperless-config.ts 193 - Enable TIFF Support + TIFF Desteğini Etkinleştir Barcode String @@ -10702,7 +10702,7 @@ tüm krite src/app/data/paperless-config.ts 200 - Barcode String + Barkod Dizesi Retain Split Pages @@ -10710,7 +10710,7 @@ tüm krite src/app/data/paperless-config.ts 207 - Retain Split Pages + Bölünmüş Sayfaları Koru Enable ASN @@ -10718,7 +10718,7 @@ tüm krite src/app/data/paperless-config.ts 214 - Enable ASN + ASN'yi etkinleştir ASN Prefix @@ -10726,7 +10726,7 @@ tüm krite src/app/data/paperless-config.ts 221 - ASN Prefix + ASN Ön Eki Upscale @@ -10734,7 +10734,7 @@ tüm krite src/app/data/paperless-config.ts 228 - Upscale + Çözünürlüğü yükseltme DPI @@ -10742,7 +10742,7 @@ tüm krite src/app/data/paperless-config.ts 235 - DPI + DPI Max Pages @@ -10750,7 +10750,7 @@ tüm krite src/app/data/paperless-config.ts 242 - Max Pages + Maksimum Sayfa Sayısı Enable Tag Detection @@ -10758,7 +10758,7 @@ tüm krite src/app/data/paperless-config.ts 249 - Enable Tag Detection + Etiket Algılamayı Etkinleştir Tag Mapping @@ -10766,7 +10766,7 @@ tüm krite src/app/data/paperless-config.ts 256 - Tag Mapping + Etiket Eşlemesi Warning: You have unsaved changes to your document(s). @@ -10774,7 +10774,7 @@ tüm krite src/app/guards/dirty-doc.guard.ts 16 - Warning: You have unsaved changes to your document(s). + Uyarı: Belge(ler)inizde kaydedilmemiş değişiklikler var. Unsaved Changes @@ -10830,7 +10830,7 @@ tüm krite src/app/guards/dirty-saved-view.guard.ts 29 - You have unsaved changes to the saved view + Kaydedilmiş görünümde kaydedilmemiş değişiklikleriniz var Are you sure you want to close this saved view? @@ -10838,7 +10838,7 @@ tüm krite src/app/guards/dirty-saved-view.guard.ts 33 - Are you sure you want to close this saved view? + Bu kaydedilmiş görünümü kapatmak istediğinizden emin misiniz? Save and close @@ -10846,7 +10846,7 @@ tüm krite src/app/guards/dirty-saved-view.guard.ts 37 - Save and close + Kaydet ve kapat You don't have permissions to do that @@ -10854,7 +10854,7 @@ tüm krite src/app/guards/permissions.guard.ts 34 - You don't have permissions to do that + Bunu yapmak için gerekli izinlere sahip değilsiniz Last year @@ -10870,7 +10870,7 @@ tüm krite src/app/pipes/custom-date.pipe.ts 15 - %s years ago + %s yıl önce Last month @@ -10886,7 +10886,7 @@ tüm krite src/app/pipes/custom-date.pipe.ts 20 - %s months ago + %s ay önce Last week @@ -10894,7 +10894,7 @@ tüm krite src/app/pipes/custom-date.pipe.ts 24 - Last week + Geçen hafta %s weeks ago @@ -10902,7 +10902,7 @@ tüm krite src/app/pipes/custom-date.pipe.ts 25 - %s weeks ago + %s hafta önce %s days ago @@ -10910,7 +10910,7 @@ tüm krite src/app/pipes/custom-date.pipe.ts 30 - %s days ago + %s gün önce %s hour ago @@ -10918,7 +10918,7 @@ tüm krite src/app/pipes/custom-date.pipe.ts 34 - %s hour ago + %s saat önce %s hours ago @@ -10926,7 +10926,7 @@ tüm krite src/app/pipes/custom-date.pipe.ts 35 - %s hours ago + %s saat önce %s minute ago @@ -10934,7 +10934,7 @@ tüm krite src/app/pipes/custom-date.pipe.ts 39 - %s minute ago + %s dakika önce %s minutes ago @@ -10942,7 +10942,7 @@ tüm krite src/app/pipes/custom-date.pipe.ts 40 - %s minutes ago + %s dakika önce Just now @@ -10950,7 +10950,7 @@ tüm krite src/app/pipes/custom-date.pipe.ts 73 - Just now + Az önce (no title) @@ -10966,7 +10966,7 @@ tüm krite src/app/services/open-documents.service.ts 124 - You have unsaved changes to the document + Belgede kaydetmemiş değişiklikleriniz var Are you sure you want to close this document? @@ -11030,7 +11030,7 @@ tüm krite src/app/services/settings.service.ts 75 - Bulgarian + Bulgarca Catalan @@ -11110,7 +11110,7 @@ tüm krite src/app/services/settings.service.ts 135 - Hungarian + Macarca Italian @@ -11126,7 +11126,7 @@ tüm krite src/app/services/settings.service.ts 147 - Japanese + Japonca Korean @@ -11134,7 +11134,7 @@ tüm krite src/app/services/settings.service.ts 153 - Korean + Korece Luxembourgish @@ -11166,7 +11166,7 @@ tüm krite src/app/services/settings.service.ts 177 - Persian + Farsça Polish @@ -11262,7 +11262,7 @@ tüm krite src/app/services/settings.service.ts 249 - Vietnamese + Vietnamca Chinese Simplified @@ -11278,7 +11278,7 @@ tüm krite src/app/services/settings.service.ts 261 - Chinese Traditional + Geleneksel Çince ISO 8601 @@ -11391,7 +11391,7 @@ tüm krite 29 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Tüketim öncesi komut dosyası yok. + Tüketim öncesi komut dosyası mevcut değil. Error while executing pre-consume script. @@ -11400,7 +11400,7 @@ tüm krite 30 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Tüketim öncesi komut dosyasını işlerken hata oluştu. + Tüketim öncesi komut dosyasını işlerken bir hata meydana geldi. Post-consume script does not exist. @@ -11409,7 +11409,7 @@ tüm krite 31 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Tüketim sonrası komut dosyası yok. + Tüketim sonrası komut dosyası mevcut değil. Error while executing post-consume script. @@ -11418,7 +11418,7 @@ tüm krite 32 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Tüketim sonrası komut dosyasını işlerken hata oluştu. + Tüketim sonrası komut dosyasını işlerken bir hata meydana geldi. Received new file. diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf index 6af11586c..1ea46f476 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Закрити @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 Попередній @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 Наступний @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Попередній місяць @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 Наступний місяць @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ГГ @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Закрити @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Оберіть місяць @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Години @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 ММ @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Оберіть рік @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Хвилини @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Перший @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Збільшити години @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Попередній @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Зменшити години @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Наступний @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Збільшити хвилини @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Останній @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Зменшити хвилини @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 СС @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Секунди @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Збільшити секунди @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 Зменшити секунди @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf index 621962468..ed5c05b71 100644 --- a/src-ui/src/locale/messages.vi_VN.xlf +++ b/src-ui/src/locale/messages.vi_VN.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 Đóng @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -27,7 +27,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 @@ -37,7 +37,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 @@ -47,11 +47,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 @@ -61,11 +61,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 @@ -75,7 +75,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -85,7 +85,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -95,11 +95,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -109,7 +109,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -119,7 +119,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -129,7 +129,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -139,7 +139,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -149,7 +149,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -159,11 +159,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -173,7 +173,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -183,7 +183,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -193,7 +193,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -203,7 +203,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -213,7 +213,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -223,7 +223,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -233,7 +233,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -243,7 +243,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -253,7 +253,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -263,7 +263,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -273,7 +273,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -283,7 +283,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -293,7 +293,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -303,7 +303,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -315,7 +315,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -324,7 +324,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index dd00ffadb..43aa23bd1 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 关闭 @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 上一个 @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 下一个 @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 上个月 @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 下个月 @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 关闭 @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 选择月份 @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 小时 @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 选择年份 @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 分钟 @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 第一页 @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 增加小时 @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 上一页 @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 减少小时 @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 下一页 @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 增加分钟 @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 最后一页 @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 减少分钟 @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 增加秒 @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 减少秒 @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index 20c370188..1eaac6ef3 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -5,7 +5,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/alert/alert.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/alert/alert.ts 50 關閉 @@ -13,7 +13,7 @@ Slide of - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 131,135 Currently selected slide number read by screen reader @@ -22,7 +22,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 157,159 上一個 @@ -30,7 +30,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/carousel/carousel.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/carousel/carousel.ts 198 下一個 @@ -38,11 +38,11 @@ Previous month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 83,85 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 上個月 @@ -50,11 +50,11 @@ Next month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/datepicker/datepicker-navigation.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/datepicker/datepicker-navigation.ts 112 下個月 @@ -62,7 +62,7 @@ HH - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 HH @@ -70,7 +70,7 @@ Close - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 關閉 @@ -78,11 +78,11 @@ Select month - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 選取月份 @@ -90,7 +90,7 @@ «« - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 «« @@ -98,7 +98,7 @@ Hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 小時 @@ -106,7 +106,7 @@ « - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 « @@ -114,7 +114,7 @@ MM - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 MM @@ -122,7 +122,7 @@ » - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 » @@ -130,11 +130,11 @@ Select year - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 選擇年份 @@ -142,7 +142,7 @@ Minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 分鐘 @@ -150,7 +150,7 @@ »» - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 »» @@ -158,7 +158,7 @@ First - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 第一頁 @@ -166,7 +166,7 @@ Increment hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 增加小時 @@ -174,7 +174,7 @@ Previous - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 上一頁 @@ -182,7 +182,7 @@ Decrement hours - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 減少小時 @@ -190,7 +190,7 @@ Next - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 下一頁 @@ -198,7 +198,7 @@ Increment minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 增加分鐘 @@ -206,7 +206,7 @@ Last - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 最後一頁 @@ -214,7 +214,7 @@ Decrement minutes - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 減少分鐘 @@ -222,7 +222,7 @@ SS - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 SS @@ -230,7 +230,7 @@ Seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -238,7 +238,7 @@ Increment seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 增加秒數 @@ -246,7 +246,7 @@ Decrement seconds - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 減少秒數 @@ -256,7 +256,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/ngb-config.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/ngb-config.ts 13 @@ -265,7 +265,7 @@ - node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.12_@angular+core@20.3.12_@angula_562237c7eed2d9c47098450f256dc04c/node_modules/src/progressbar/progressbar.ts + node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.14_@angular+core@20.3.12_@angula_f6978d5a33be250eb7b5e8e65faf7a7d/node_modules/src/progressbar/progressbar.ts 41,42 diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po index d4b6af16e..742257b8b 100644 --- a/src/locale/ca_ES/LC_MESSAGES/django.po +++ b/src/locale/ca_ES/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-14 16:09+0000\n" -"PO-Revision-Date: 2025-11-20 00:35\n" +"PO-Revision-Date: 2025-11-24 12:15\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Language: ca_ES\n" diff --git a/src/locale/ko_KR/LC_MESSAGES/django.po b/src/locale/ko_KR/LC_MESSAGES/django.po index 62cfede55..953806d6f 100644 --- a/src/locale/ko_KR/LC_MESSAGES/django.po +++ b/src/locale/ko_KR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-14 16:09+0000\n" -"PO-Revision-Date: 2025-11-14 16:11\n" +"PO-Revision-Date: 2025-11-25 00:35\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" diff --git a/src/locale/pl_PL/LC_MESSAGES/django.po b/src/locale/pl_PL/LC_MESSAGES/django.po index 947374c6a..01f73664e 100644 --- a/src/locale/pl_PL/LC_MESSAGES/django.po +++ b/src/locale/pl_PL/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-14 16:09+0000\n" -"PO-Revision-Date: 2025-11-14 16:11\n" +"PO-Revision-Date: 2025-11-27 00:26\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" diff --git a/src/locale/sl_SI/LC_MESSAGES/django.po b/src/locale/sl_SI/LC_MESSAGES/django.po index b8d9780ab..77f579287 100644 --- a/src/locale/sl_SI/LC_MESSAGES/django.po +++ b/src/locale/sl_SI/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-14 16:09+0000\n" -"PO-Revision-Date: 2025-11-14 16:11\n" +"PO-Revision-Date: 2025-11-28 12:15\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "Language: sl_SI\n" diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po index be6781694..c9466ab92 100644 --- a/src/locale/tr_TR/LC_MESSAGES/django.po +++ b/src/locale/tr_TR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2025-11-14 16:09+0000\n" -"PO-Revision-Date: 2025-11-21 23:54\n" +"PO-Revision-Date: 2025-11-25 12:16\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" From 6f3451bce0d0bd4b97199ca057002be34c2705bf Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Mon, 1 Dec 2025 14:01:09 -0800 Subject: [PATCH 123/133] Bumps version to 2.20.1 --- pyproject.toml | 2 +- src-ui/src/environments/environment.prod.ts | 2 +- src/paperless/version.py | 2 +- uv.lock | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f4d279f69..3108aacd0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "paperless-ngx" -version = "2.20.0" +version = "2.20.1" description = "A community-supported supercharged document management system: scan, index and archive all your physical documents" readme = "README.md" requires-python = ">=3.10" diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index cb3985a5e..fa3ce233b 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -6,7 +6,7 @@ export const environment = { apiVersion: '9', // match src/paperless/settings.py appTitle: 'Paperless-ngx', tag: 'prod', - version: '2.20.0', + version: '2.20.1', webSocketHost: window.location.host, webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:', webSocketBaseUrl: base_url.pathname + 'ws/', diff --git a/src/paperless/version.py b/src/paperless/version.py index cc995b1b0..2d0b1f4f6 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1,6 +1,6 @@ from typing import Final -__version__: Final[tuple[int, int, int]] = (2, 20, 0) +__version__: Final[tuple[int, int, int]] = (2, 20, 1) # Version string like X.Y.Z __full_version_str__: Final[str] = ".".join(map(str, __version__)) # Version string like X.Y diff --git a/uv.lock b/uv.lock index 0dcf26fde..ff0bb6b5b 100644 --- a/uv.lock +++ b/uv.lock @@ -2115,7 +2115,7 @@ wheels = [ [[package]] name = "paperless-ngx" -version = "2.20.0" +version = "2.20.1" source = { virtual = "." } dependencies = [ { name = "babel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, From 2e5bd02e7e53f5f6baa652542e969e8bbf27a36b Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Wed, 3 Dec 2025 09:25:59 -0800 Subject: [PATCH 124/133] chore: Improves dependabot groups, in particular the Django group not catching everything (#11397) --- .github/dependabot.yml | 50 ++++++++++++++++++++++++++++++++---------- 1 file changed, 38 insertions(+), 12 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 09721afb8..3af4b64e4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -41,30 +41,56 @@ updates: - "backend" - "dependencies" groups: + # Development & CI/CD Tooling development: patterns: - "*pytest*" - "ruff" - "mkdocs-material" - "pre-commit*" - django: + # Django & DRF Ecosystem + django-ecosystem: patterns: - "*django*" - "drf-*" - major-versions: + - "djangorestframework" + - "whitenoise" + - "bleach" + - "jinja2" + # Async, Task Queuing & Caching + async-tasks: + patterns: + - "celery*" + - "channels*" + - "flower" + - "redis" + # Document, PDF, and OCR Processing + document-processing: + patterns: + - "ocrmypdf" + - "pdf2image" + - "pyzbar" + - "zxing-cpp" + - "tika-client" + - "gotenberg-client" + - "python-magic" + - "python-gnupg" + # Data, NLP, and Search + data-nlp-search: + patterns: + - "nltk" + - "scikit-learn" + - "langdetect" + - "rapidfuzz" + - "whoosh-reloaded" + # Utilities (Patch Updates) + utilities-patch: update-types: - - "major" - small-changes: + - "patch" + # Utilities (Minor Updates) + utilities-minor: update-types: - "minor" - - "patch" - exclude-patterns: - - "*django*" - - "drf-*" - pre-built: - patterns: - - psycopg* - - zxing-cpp # Enable updates for GitHub Actions - package-ecosystem: "github-actions" target-branch: "dev" From ce642409e87bc1bcce43e9ab1c6d15bb788ee8b3 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 3 Dec 2025 10:52:49 -0800 Subject: [PATCH 125/133] Chore: add some output of social login errors (#11527) --- src/paperless/adapter.py | 22 ++++++++++++++++++++++ src/paperless/tests/test_adapter.py | 14 ++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/src/paperless/adapter.py b/src/paperless/adapter.py index f8517a3aa..a4506275e 100644 --- a/src/paperless/adapter.py +++ b/src/paperless/adapter.py @@ -137,3 +137,25 @@ class CustomSocialAccountAdapter(DefaultSocialAccountAdapter): user.save() handle_social_account_updated(None, request, sociallogin) return user + + def on_authentication_error( + self, + request, + provider, + error=None, + exception=None, + extra_context=None, + ): + """ + Just log errors and pass them along. + """ + logger.warning( + f"Social authentication error for provider `{provider!s}`: {error!s} ({exception!s})", + ) + return super().on_authentication_error( + request, + provider, + error, + exception, + extra_context, + ) diff --git a/src/paperless/tests/test_adapter.py b/src/paperless/tests/test_adapter.py index bbd7ff73e..37b8aaa3b 100644 --- a/src/paperless/tests/test_adapter.py +++ b/src/paperless/tests/test_adapter.py @@ -167,3 +167,17 @@ class TestCustomSocialAccountAdapter(TestCase): self.assertEqual(user.groups.count(), 1) self.assertTrue(user.groups.filter(name="group1").exists()) self.assertFalse(user.groups.filter(name="group2").exists()) + + def test_error_logged_on_authentication_error(self): + adapter = get_social_adapter() + request = HttpRequest() + with self.assertLogs("paperless.auth", level="INFO") as log_cm: + adapter.on_authentication_error( + request, + provider="test-provider", + error="Error", + exception="Test authentication error", + ) + self.assertTrue( + any("Test authentication error" in message for message in log_cm.output), + ) From b63e095a606a878bde175223c415b3035df2829c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Dec 2025 07:06:08 -0800 Subject: [PATCH 126/133] docker(deps): bump astral-sh/uv (#11533) Bumps [astral-sh/uv](https://github.com/astral-sh/uv) from 0.9.14-python3.12-trixie-slim to 0.9.15-python3.12-trixie-slim. - [Release notes](https://github.com/astral-sh/uv/releases) - [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/uv/compare/0.9.14...0.9.15) --- updated-dependencies: - dependency-name: astral-sh/uv dependency-version: 0.9.15-python3.12-trixie-slim dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4d1dbb13e..a7dc6511f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN set -eux \ # Purpose: Installs s6-overlay and rootfs # Comments: # - Don't leave anything extra in here either -FROM ghcr.io/astral-sh/uv:0.9.14-python3.12-trixie-slim AS s6-overlay-base +FROM ghcr.io/astral-sh/uv:0.9.15-python3.12-trixie-slim AS s6-overlay-base WORKDIR /usr/src/s6 From 21032ac008de20be795879e2b4e52f073f34855c Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 4 Dec 2025 12:45:49 -0800 Subject: [PATCH 127/133] Tweakhancement: dim inactive users in users-groups list (#11537) --- .../components/admin/users-groups/users-groups.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/app/components/admin/users-groups/users-groups.component.html b/src-ui/src/app/components/admin/users-groups/users-groups.component.html index 2cf92f94f..9f91a8714 100644 --- a/src-ui/src/app/components/admin/users-groups/users-groups.component.html +++ b/src-ui/src/app/components/admin/users-groups/users-groups.component.html @@ -26,7 +26,7 @@ @for (user of users; track user) {
  • -
    +
    {{user.first_name}} {{user.last_name}}
    {{user.groups?.map(getGroupName, this).join(', ')}}
    From 01992bb5c66e9ee5f20a4c91702eceecf0315c08 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 03:05:46 +0000 Subject: [PATCH 128/133] Chore(deps-dev): Bump the frontend-eslint-dependencies group (#11512) Bumps the frontend-eslint-dependencies group in /src-ui with 3 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) and [@typescript-eslint/utils](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/utils). Updates `@typescript-eslint/eslint-plugin` from 8.47.0 to 8.48.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.48.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 8.47.0 to 8.48.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.48.0/packages/parser) Updates `@typescript-eslint/utils` from 8.47.0 to 8.48.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/utils/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.48.0/packages/utils) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-version: 8.48.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-eslint-dependencies - dependency-name: "@typescript-eslint/parser" dependency-version: 8.48.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-eslint-dependencies - dependency-name: "@typescript-eslint/utils" dependency-version: 8.48.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-eslint-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src-ui/package.json | 6 +- src-ui/pnpm-lock.yaml | 155 +++++++++++++++++++++--------------------- 2 files changed, 80 insertions(+), 81 deletions(-) diff --git a/src-ui/package.json b/src-ui/package.json index ed59cf4a6..d46858887 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -56,9 +56,9 @@ "@playwright/test": "^1.56.1", "@types/jest": "^30.0.0", "@types/node": "^24.10.1", - "@typescript-eslint/eslint-plugin": "^8.47.0", - "@typescript-eslint/parser": "^8.47.0", - "@typescript-eslint/utils": "^8.47.0", + "@typescript-eslint/eslint-plugin": "^8.48.1", + "@typescript-eslint/parser": "^8.48.1", + "@typescript-eslint/utils": "^8.48.1", "eslint": "^9.39.1", "jest": "30.2.0", "jest-environment-jsdom": "^30.2.0", diff --git a/src-ui/pnpm-lock.yaml b/src-ui/pnpm-lock.yaml index 7f049421f..ca82e893e 100644 --- a/src-ui/pnpm-lock.yaml +++ b/src-ui/pnpm-lock.yaml @@ -107,13 +107,13 @@ importers: version: 20.6.0(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@angular-eslint/eslint-plugin': specifier: 20.6.0 - version: 20.6.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + version: 20.6.0(@typescript-eslint/utils@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@angular-eslint/eslint-plugin-template': specifier: 20.6.0 - version: 20.6.0(@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + version: 20.6.0(@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.48.1)(@typescript-eslint/utils@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@angular-eslint/schematics': specifier: 20.6.0 - version: 20.6.0(@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + version: 20.6.0(@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.48.1)(@typescript-eslint/utils@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@angular-eslint/template-parser': specifier: 20.6.0 version: 20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) @@ -139,14 +139,14 @@ importers: specifier: ^24.10.1 version: 24.10.1 '@typescript-eslint/eslint-plugin': - specifier: ^8.47.0 - version: 8.47.0(@typescript-eslint/parser@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + specifier: ^8.48.1 + version: 8.48.1(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@typescript-eslint/parser': - specifier: ^8.47.0 - version: 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + specifier: ^8.48.1 + version: 8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) '@typescript-eslint/utils': - specifier: ^8.47.0 - version: 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + specifier: ^8.48.1 + version: 8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) eslint: specifier: ^9.39.1 version: 9.39.1(jiti@1.21.7) @@ -2970,63 +2970,63 @@ packages: '@types/yargs@17.0.33': resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} - '@typescript-eslint/eslint-plugin@8.47.0': - resolution: {integrity: sha512-fe0rz9WJQ5t2iaLfdbDc9T80GJy0AeO453q8C3YCilnGozvOyCG5t+EZtg7j7D88+c3FipfP/x+wzGnh1xp8ZA==} + '@typescript-eslint/eslint-plugin@8.48.1': + resolution: {integrity: sha512-X63hI1bxl5ohelzr0LY5coufyl0LJNthld+abwxpCoo6Gq+hSqhKwci7MUWkXo67mzgUK6YFByhmaHmUcuBJmA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.47.0 + '@typescript-eslint/parser': ^8.48.1 eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/parser@8.47.0': - resolution: {integrity: sha512-lJi3PfxVmo0AkEY93ecfN+r8SofEqZNGByvHAI3GBLrvt1Cw6H5k1IM02nSzu0RfUafr2EvFSw0wAsZgubNplQ==} + '@typescript-eslint/parser@8.48.1': + resolution: {integrity: sha512-PC0PDZfJg8sP7cmKe6L3QIL8GZwU5aRvUFedqSIpw3B+QjRSUZeeITC2M5XKeMXEzL6wccN196iy3JLwKNvDVA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/project-service@8.47.0': - resolution: {integrity: sha512-2X4BX8hUeB5JcA1TQJ7GjcgulXQ+5UkNb0DL8gHsHUHdFoiCTJoYLTpib3LtSDPZsRET5ygN4qqIWrHyYIKERA==} + '@typescript-eslint/project-service@8.48.1': + resolution: {integrity: sha512-HQWSicah4s9z2/HifRPQ6b6R7G+SBx64JlFQpgSSHWPKdvCZX57XCbszg/bapbRsOEv42q5tayTYcEFpACcX1w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/scope-manager@8.47.0': - resolution: {integrity: sha512-a0TTJk4HXMkfpFkL9/WaGTNuv7JWfFTQFJd6zS9dVAjKsojmv9HT55xzbEpnZoY+VUb+YXLMp+ihMLz/UlZfDg==} + '@typescript-eslint/scope-manager@8.48.1': + resolution: {integrity: sha512-rj4vWQsytQbLxC5Bf4XwZ0/CKd362DkWMUkviT7DCS057SK64D5lH74sSGzhI6PDD2HCEq02xAP9cX68dYyg1w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.47.0': - resolution: {integrity: sha512-ybUAvjy4ZCL11uryalkKxuT3w3sXJAuWhOoGS3T/Wu+iUu1tGJmk5ytSY8gbdACNARmcYEB0COksD2j6hfGK2g==} + '@typescript-eslint/tsconfig-utils@8.48.1': + resolution: {integrity: sha512-k0Jhs4CpEffIBm6wPaCXBAD7jxBtrHjrSgtfCjUvPp9AZ78lXKdTR8fxyZO5y4vWNlOvYXRtngSZNSn+H53Jkw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/type-utils@8.47.0': - resolution: {integrity: sha512-QC9RiCmZ2HmIdCEvhd1aJELBlD93ErziOXXlHEZyuBo3tBiAZieya0HLIxp+DoDWlsQqDawyKuNEhORyku+P8A==} + '@typescript-eslint/type-utils@8.48.1': + resolution: {integrity: sha512-1jEop81a3LrJQLTf/1VfPQdhIY4PlGDBc/i67EVWObrtvcziysbLN3oReexHOM6N3jyXgCrkBsZpqwH0hiDOQg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/types@8.47.0': - resolution: {integrity: sha512-nHAE6bMKsizhA2uuYZbEbmp5z2UpffNrPEqiKIeN7VsV6UY/roxanWfoRrf6x/k9+Obf+GQdkm0nPU+vnMXo9A==} + '@typescript-eslint/types@8.48.1': + resolution: {integrity: sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.47.0': - resolution: {integrity: sha512-k6ti9UepJf5NpzCjH31hQNLHQWupTRPhZ+KFF8WtTuTpy7uHPfeg2NM7cP27aCGajoEplxJDFVCEm9TGPYyiVg==} + '@typescript-eslint/typescript-estree@8.48.1': + resolution: {integrity: sha512-/9wQ4PqaefTK6POVTjJaYS0bynCgzh6ClJHGSBj06XEHjkfylzB+A3qvyaXnErEZSaxhIo4YdyBgq6j4RysxDg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/utils@8.47.0': - resolution: {integrity: sha512-g7XrNf25iL4TJOiPqatNuaChyqt49a/onq5YsJ9+hXeugK+41LVg7AxikMfM02PC6jbNtZLCJj6AUcQXJS/jGQ==} + '@typescript-eslint/utils@8.48.1': + resolution: {integrity: sha512-fAnhLrDjiVfey5wwFRwrweyRlCmdz5ZxXz2G/4cLn0YDLjTapmN4gcCsTBR1N2rWnZSDeWpYtgLDsJt+FpmcwA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/visitor-keys@8.47.0': - resolution: {integrity: sha512-SIV3/6eftCy1bNzCQoPmbWsRLujS8t5iDIZ4spZOBHqrM+yfX2ogg8Tt3PDTAVKw3sSCiUgg30uOAvK2r9zGjQ==} + '@typescript-eslint/visitor-keys@8.48.1': + resolution: {integrity: sha512-BmxxndzEWhE4TIEEMBs8lP3MBWN3jFPs/p6gPm/wkv02o41hI6cq9AuSmGAaTTHPtA1FTi2jBre4A9rm5ZmX+Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.3.0': @@ -7287,33 +7287,33 @@ snapshots: '@angular-eslint/bundled-angular-compiler@20.6.0': {} - '@angular-eslint/eslint-plugin-template@20.6.0(@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/eslint-plugin-template@20.6.0(@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.48.1)(@typescript-eslint/utils@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: '@angular-eslint/bundled-angular-compiler': 20.6.0 '@angular-eslint/template-parser': 20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) - '@angular-eslint/utils': 20.6.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) - '@typescript-eslint/types': 8.47.0 - '@typescript-eslint/utils': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@angular-eslint/utils': 20.6.0(@typescript-eslint/utils@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@typescript-eslint/types': 8.48.1 + '@typescript-eslint/utils': 8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) aria-query: 5.3.2 axobject-query: 4.1.0 eslint: 9.39.1(jiti@1.21.7) typescript: 5.8.3 - '@angular-eslint/eslint-plugin@20.6.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/eslint-plugin@20.6.0(@typescript-eslint/utils@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: '@angular-eslint/bundled-angular-compiler': 20.6.0 - '@angular-eslint/utils': 20.6.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) - '@typescript-eslint/utils': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@angular-eslint/utils': 20.6.0(@typescript-eslint/utils@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@typescript-eslint/utils': 8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) eslint: 9.39.1(jiti@1.21.7) ts-api-utils: 2.1.0(typescript@5.8.3) typescript: 5.8.3 - '@angular-eslint/schematics@20.6.0(@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/schematics@20.6.0(@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.48.1)(@typescript-eslint/utils@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: '@angular-devkit/core': 20.3.10(chokidar@4.0.3) '@angular-devkit/schematics': 20.3.10(chokidar@4.0.3) - '@angular-eslint/eslint-plugin': 20.6.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) - '@angular-eslint/eslint-plugin-template': 20.6.0(@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.47.0)(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@angular-eslint/eslint-plugin': 20.6.0(@typescript-eslint/utils@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@angular-eslint/eslint-plugin-template': 20.6.0(@angular-eslint/template-parser@20.6.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(@typescript-eslint/types@8.48.1)(@typescript-eslint/utils@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) ignore: 7.0.5 semver: 7.7.3 strip-json-comments: 3.1.1 @@ -7332,10 +7332,10 @@ snapshots: eslint-scope: 8.4.0 typescript: 5.8.3 - '@angular-eslint/utils@20.6.0(@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': + '@angular-eslint/utils@20.6.0(@typescript-eslint/utils@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: '@angular-eslint/bundled-angular-compiler': 20.6.0 - '@typescript-eslint/utils': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@typescript-eslint/utils': 8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) eslint: 9.39.1(jiti@1.21.7) typescript: 5.8.3 @@ -9946,14 +9946,14 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@8.47.0(@typescript-eslint/parser@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': + '@typescript-eslint/eslint-plugin@8.48.1(@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3))(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.47.0 - '@typescript-eslint/type-utils': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) - '@typescript-eslint/utils': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.47.0 + '@typescript-eslint/parser': 8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.48.1 + '@typescript-eslint/type-utils': 8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@typescript-eslint/utils': 8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.48.1 eslint: 9.39.1(jiti@1.21.7) graphemer: 1.4.0 ignore: 7.0.5 @@ -9963,41 +9963,41 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': + '@typescript-eslint/parser@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: - '@typescript-eslint/scope-manager': 8.47.0 - '@typescript-eslint/types': 8.47.0 - '@typescript-eslint/typescript-estree': 8.47.0(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.47.0 + '@typescript-eslint/scope-manager': 8.48.1 + '@typescript-eslint/types': 8.48.1 + '@typescript-eslint/typescript-estree': 8.48.1(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.48.1 debug: 4.4.3 eslint: 9.39.1(jiti@1.21.7) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.47.0(typescript@5.8.3)': + '@typescript-eslint/project-service@8.48.1(typescript@5.8.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.47.0(typescript@5.8.3) - '@typescript-eslint/types': 8.47.0 + '@typescript-eslint/tsconfig-utils': 8.48.1(typescript@5.8.3) + '@typescript-eslint/types': 8.48.1 debug: 4.4.3 typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.47.0': + '@typescript-eslint/scope-manager@8.48.1': dependencies: - '@typescript-eslint/types': 8.47.0 - '@typescript-eslint/visitor-keys': 8.47.0 + '@typescript-eslint/types': 8.48.1 + '@typescript-eslint/visitor-keys': 8.48.1 - '@typescript-eslint/tsconfig-utils@8.47.0(typescript@5.8.3)': + '@typescript-eslint/tsconfig-utils@8.48.1(typescript@5.8.3)': dependencies: typescript: 5.8.3 - '@typescript-eslint/type-utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': + '@typescript-eslint/type-utils@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: - '@typescript-eslint/types': 8.47.0 - '@typescript-eslint/typescript-estree': 8.47.0(typescript@5.8.3) - '@typescript-eslint/utils': 8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) + '@typescript-eslint/types': 8.48.1 + '@typescript-eslint/typescript-estree': 8.48.1(typescript@5.8.3) + '@typescript-eslint/utils': 8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3) debug: 4.4.3 eslint: 9.39.1(jiti@1.21.7) ts-api-utils: 2.1.0(typescript@5.8.3) @@ -10005,38 +10005,37 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.47.0': {} + '@typescript-eslint/types@8.48.1': {} - '@typescript-eslint/typescript-estree@8.47.0(typescript@5.8.3)': + '@typescript-eslint/typescript-estree@8.48.1(typescript@5.8.3)': dependencies: - '@typescript-eslint/project-service': 8.47.0(typescript@5.8.3) - '@typescript-eslint/tsconfig-utils': 8.47.0(typescript@5.8.3) - '@typescript-eslint/types': 8.47.0 - '@typescript-eslint/visitor-keys': 8.47.0 + '@typescript-eslint/project-service': 8.48.1(typescript@5.8.3) + '@typescript-eslint/tsconfig-utils': 8.48.1(typescript@5.8.3) + '@typescript-eslint/types': 8.48.1 + '@typescript-eslint/visitor-keys': 8.48.1 debug: 4.4.3 - fast-glob: 3.3.3 - is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.7.3 + tinyglobby: 0.2.15 ts-api-utils: 2.1.0(typescript@5.8.3) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.47.0(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': + '@typescript-eslint/utils@8.48.1(eslint@9.39.1(jiti@1.21.7))(typescript@5.8.3)': dependencies: '@eslint-community/eslint-utils': 4.9.0(eslint@9.39.1(jiti@1.21.7)) - '@typescript-eslint/scope-manager': 8.47.0 - '@typescript-eslint/types': 8.47.0 - '@typescript-eslint/typescript-estree': 8.47.0(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.48.1 + '@typescript-eslint/types': 8.48.1 + '@typescript-eslint/typescript-estree': 8.48.1(typescript@5.8.3) eslint: 9.39.1(jiti@1.21.7) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.47.0': + '@typescript-eslint/visitor-keys@8.48.1': dependencies: - '@typescript-eslint/types': 8.47.0 + '@typescript-eslint/types': 8.48.1 eslint-visitor-keys: 4.2.1 '@ungap/structured-clone@1.3.0': {} From 555ba8bb19111f42cdd6100453bcee92393a9a0d Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 7 Dec 2025 19:07:28 -0800 Subject: [PATCH 129/133] Chore: remove use of logs ngFor --- src-ui/src/app/components/admin/logs/logs.component.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src-ui/src/app/components/admin/logs/logs.component.html b/src-ui/src/app/components/admin/logs/logs.component.html index b3df5ff89..17ceb1e89 100644 --- a/src-ui/src/app/components/admin/logs/logs.component.html +++ b/src-ui/src/app/components/admin/logs/logs.component.html @@ -48,7 +48,9 @@ Loading...
    } @else { -

    {{log.message}}

    + @for (log of logs; track log) { +

    {{log.message}}

    + } }