From 358db10fe3481b0681c5f5de8f5abc56af8e790f Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 8 Apr 2025 08:55:03 -0700 Subject: [PATCH 1/2] Fix: ensure only matched scheduled workflows are applied (#9580) --- src/documents/signals/handlers.py | 50 +++++++++++++++++++------------ src/documents/tasks.py | 5 ++-- 2 files changed, 34 insertions(+), 21 deletions(-) diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index 21ea76836..073026b19 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -649,11 +649,12 @@ def send_webhook( def run_workflows( trigger_type: WorkflowTrigger.WorkflowTriggerType, document: Document | ConsumableDocument, + workflow_to_run: Workflow | None = None, logging_group=None, overrides: DocumentMetadataOverrides | None = None, original_file: Path | None = None, ) -> tuple[DocumentMetadataOverrides, str] | None: - """Run workflows which match a Document (or ConsumableDocument) for a specific trigger type. + """Run workflows which match a Document (or ConsumableDocument) for a specific trigger type or a single workflow if given. Assignment or removal actions are either applied directly to the document or an overrides object. If an overrides object is provided, the function returns the object with the applied changes or None if no actions were applied and a string @@ -1192,24 +1193,28 @@ def run_workflows( messages = [] workflows = ( - Workflow.objects.filter(enabled=True, triggers__type=trigger_type) - .prefetch_related( - "actions", - "actions__assign_view_users", - "actions__assign_view_groups", - "actions__assign_change_users", - "actions__assign_change_groups", - "actions__assign_custom_fields", - "actions__remove_tags", - "actions__remove_correspondents", - "actions__remove_document_types", - "actions__remove_storage_paths", - "actions__remove_custom_fields", - "actions__remove_owners", - "triggers", + ( + Workflow.objects.filter(enabled=True, triggers__type=trigger_type) + .prefetch_related( + "actions", + "actions__assign_view_users", + "actions__assign_view_groups", + "actions__assign_change_users", + "actions__assign_change_groups", + "actions__assign_custom_fields", + "actions__remove_tags", + "actions__remove_correspondents", + "actions__remove_document_types", + "actions__remove_storage_paths", + "actions__remove_custom_fields", + "actions__remove_owners", + "triggers", + ) + .order_by("order") + .distinct() ) - .order_by("order") - .distinct() + if workflow_to_run is None + else [workflow_to_run] ) for workflow in workflows: @@ -1220,7 +1225,14 @@ def run_workflows( document.refresh_from_db() doc_tag_ids = list(document.tags.values_list("pk", flat=True)) - if matching.document_matches_workflow(document, workflow, trigger_type): + # If a workflow is supplied, we don't need to check if it matches + matches = ( + matching.document_matches_workflow(document, workflow, trigger_type) + if workflow_to_run is None + else True + ) + + if matches: action: WorkflowAction for action in workflow.actions.all(): message = f"Applying {action} from {workflow}" diff --git a/src/documents/tasks.py b/src/documents/tasks.py index e60418c3b..7d71d48c9 100644 --- a/src/documents/tasks.py +++ b/src/documents/tasks.py @@ -461,6 +461,7 @@ def check_scheduled_workflows(): ) continue run_workflows( - WorkflowTrigger.WorkflowTriggerType.SCHEDULED, - document, + trigger_type=WorkflowTrigger.WorkflowTriggerType.SCHEDULED, + workflow_to_run=workflow, + document=document, ) From 8ad794e189b3bd0f949dfc7f7e443c544234c367 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 8 Apr 2025 09:02:42 -0700 Subject: [PATCH 2/2] New Crowdin translations by GitHub Action (#9479) Co-authored-by: Crowdin Bot --- src-ui/src/locale/messages.af_ZA.xlf | 90 ++++++++-------- src-ui/src/locale/messages.ar_AR.xlf | 90 ++++++++-------- src-ui/src/locale/messages.be_BY.xlf | 90 ++++++++-------- src-ui/src/locale/messages.bg_BG.xlf | 90 ++++++++-------- src-ui/src/locale/messages.ca_ES.xlf | 90 ++++++++-------- src-ui/src/locale/messages.cs_CZ.xlf | 90 ++++++++-------- src-ui/src/locale/messages.da_DK.xlf | 90 ++++++++-------- src-ui/src/locale/messages.de_DE.xlf | 90 ++++++++-------- src-ui/src/locale/messages.el_GR.xlf | 90 ++++++++-------- src-ui/src/locale/messages.es_ES.xlf | 90 ++++++++-------- src-ui/src/locale/messages.et_EE.xlf | 90 ++++++++-------- src-ui/src/locale/messages.fi_FI.xlf | 90 ++++++++-------- src-ui/src/locale/messages.fr_FR.xlf | 100 +++++++++--------- src-ui/src/locale/messages.he_IL.xlf | 90 ++++++++-------- src-ui/src/locale/messages.hr_HR.xlf | 90 ++++++++-------- src-ui/src/locale/messages.hu_HU.xlf | 90 ++++++++-------- src-ui/src/locale/messages.id_ID.xlf | 90 ++++++++-------- src-ui/src/locale/messages.it_IT.xlf | 90 ++++++++-------- src-ui/src/locale/messages.ja_JP.xlf | 100 +++++++++--------- src-ui/src/locale/messages.ko_KR.xlf | 90 ++++++++-------- src-ui/src/locale/messages.lb_LU.xlf | 90 ++++++++-------- src-ui/src/locale/messages.lt_LT.xlf | 90 ++++++++-------- src-ui/src/locale/messages.lv_LV.xlf | 90 ++++++++-------- src-ui/src/locale/messages.ms_MY.xlf | 90 ++++++++-------- src-ui/src/locale/messages.nl_NL.xlf | 90 ++++++++-------- src-ui/src/locale/messages.no_NO.xlf | 90 ++++++++-------- src-ui/src/locale/messages.pl_PL.xlf | 90 ++++++++-------- src-ui/src/locale/messages.pt_BR.xlf | 90 ++++++++-------- src-ui/src/locale/messages.pt_PT.xlf | 90 ++++++++-------- src-ui/src/locale/messages.ro_RO.xlf | 90 ++++++++-------- src-ui/src/locale/messages.ru_RU.xlf | 90 ++++++++-------- src-ui/src/locale/messages.sk_SK.xlf | 90 ++++++++-------- src-ui/src/locale/messages.sl_SI.xlf | 90 ++++++++-------- src-ui/src/locale/messages.sr_CS.xlf | 90 ++++++++-------- src-ui/src/locale/messages.sv_SE.xlf | 90 ++++++++-------- src-ui/src/locale/messages.th_TH.xlf | 90 ++++++++-------- src-ui/src/locale/messages.tr_TR.xlf | 90 ++++++++-------- src-ui/src/locale/messages.uk_UA.xlf | 90 ++++++++-------- src-ui/src/locale/messages.vi_VN.xlf | 90 ++++++++-------- src-ui/src/locale/messages.zh_CN.xlf | 90 ++++++++-------- src-ui/src/locale/messages.zh_TW.xlf | 90 ++++++++-------- src/locale/af_ZA/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/ar_AR/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/be_BY/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/bg_BG/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/ca_ES/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/cs_CZ/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/da_DK/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/de_DE/LC_MESSAGES/django.po | 102 +++++++++--------- src/locale/el_GR/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/es_ES/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/et_EE/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/fi_FI/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/fr_FR/LC_MESSAGES/django.po | 102 +++++++++--------- src/locale/he_IL/LC_MESSAGES/django.po | 104 +++++++++--------- src/locale/hr_HR/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/hu_HU/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/id_ID/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/it_IT/LC_MESSAGES/django.po | 106 ++++++++++--------- src/locale/ja_JP/LC_MESSAGES/django.po | 102 +++++++++--------- src/locale/ko_KR/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/lb_LU/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/lt_LT/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/lv_LV/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/ms_MY/LC_MESSAGES/django.po | 118 +++++++++++---------- src/locale/nl_NL/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/no_NO/LC_MESSAGES/django.po | 140 +++++++++++++------------ src/locale/pl_PL/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/pt_BR/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/pt_PT/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/ro_RO/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/ru_RU/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/sk_SK/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/sl_SI/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/sr_CS/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/sv_SE/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/th_TH/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/tr_TR/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/uk_UA/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/vi_VN/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/zh_CN/LC_MESSAGES/django.po | 100 +++++++++--------- src/locale/zh_TW/LC_MESSAGES/django.po | 100 +++++++++--------- 82 files changed, 4106 insertions(+), 3778 deletions(-) diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf index eccce5daf..ddd0dbe9f 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privaat @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Fout by bewaar van dokument @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Error deleting document @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 U kan die toer weer vanuit die instellingsblad begin. diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index 94ac51690..24fd05147 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 إزالة الرابط @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 شخصي @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 خطأ أثناء حفظ المستند @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 هل تريد حقاً نقل المستند "" إلى سلة المهملات؟ @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 خطأ أثناء حذف المستند @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 ستؤدي هذه العملية إلى إعادة إنشاء ملف الأرشيف لهذا المستند بشكل دائم. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 سيتم إعادة إنشاء ملف الأرشيف بالإعدادات الحالية. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 خطأ أثناء تنفيذ العملية @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 احتواء الصفحة @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 تأكيد التجزئة @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 هذه العملية ستؤدي إلى فصل المستند أو المستندات المحددة لمستندات جديدة. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 خطأ أثناء تنفيذ عملية التجزئة @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 هذه العملية ستؤدي إلى تدوير النسخة الأصلية من المستند الحالي بشكل دائم. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 خطأ أثناء تنفيذ عملية التدوير @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 تأكيد حذف الصفحات @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 ستؤدي هذه العملية إلى حذف الصفحات المحددة نهائيا من المستند الأصلي. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 خطأ أثناء تنفيذ عملية حذف الصفحات @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 يمكنك إعادة تشغيل الجولة من صفحة الإعدادات. diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index 29d4063d6..1f5dcb7e4 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Private @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Error saving document @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Error deleting document @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf index aea611e81..752225359 100644 --- a/src-ui/src/locale/messages.bg_BG.xlf +++ b/src-ui/src/locale/messages.bg_BG.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Частен @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Грешка при запазване на документа @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Грешка при изтриване на документа @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Грешка при изпълнение на операцията @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Побиране на страницата @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Можете да рестартирате обиколката от страницата с настройки. diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index 0128881fa..c6f720baf 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Eliminar enllaç @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 No trobat @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privat @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" deat satisfactòriament. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error desant document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Error guardant document @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Realment vols moure el document "" a la brossa? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Error esborrant document @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 Aquesta operació recrearà l'arxivat per aquest document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 Els arxius arxivats seran regenerats amb les opcions actuals. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 Reprocessament per "" començarà en segon pla. Tanca i reobre o recarrega el documentper a veure el nou contingut. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executant operació @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error descarregant document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Encaix Pàgina @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Confirma divisió @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 Aquesta operació dividirà els documents seleccionats en documents nous. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 L'operació per dividir "" començarà en segon pla. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executant operació de divisió @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 Aquesta operació girarà permanentment la versió original del document actual. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 La rotació de "" començarà en segon pla. Tanca i reobre el document per a veure els canvis. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executant operació de rotació @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Confirma esborrat @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 Aquesta operació suprimirà permanentment les pàgines seleccionades del document original. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Esborrat de pàgines de "" començarà en segon pla. Tanca i reobre o recarrega el document per a veure els canvis. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error en executar l'operació d'eliminació de pàgines @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 Error al carregar tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Pots reiniciar el tour des de les opcions. diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index 74e10b4f1..7b0b05180 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Odstranit odkaz @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Nenalezeno @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Soukromé @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Chyba při ukládání dokumentu @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Opravdu chcete přesunout dokument „“ do koše? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Chyba při mazání dokumentu @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 Tato operace trvale obnoví archivní soubor pro tento dokument. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 Archivní soubor bude znovu vytvořen s aktuálním nastavením. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Chyba při provádění operace @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Přizpůsobení stránky @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Potvrzení rozdělení @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 Tato operace rozdělí vybrané dokumenty na nové dokumenty. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Chyba při provádění operace rozdělení @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 Tato operace trvale otočí původní verzi aktuálního dokumentu. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Chyba při provádění operace otočení @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Potvrzení odstranění stránek @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 Tato operace nenávratně smaže vybrané stránky z původního dokumentu. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Chyba při vykonávání operace odstranění stránek @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 Došlo k chybě při načítání tiff: @@ -10870,7 +10874,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Prohlídku můžete znovu spustit ze stránky s nastavením. diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index 7185731e5..1de3b8636 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Private @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Error saving document @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Error deleting document @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index b9a0afb84..e1cb84aed 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Verknüpfung entfernen @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Nicht gefunden @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privat @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Dokument „“ erfolgreich gespeichert. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Fehler beim Speichern des Dokuments „ @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Fehler beim Speichern des Dokuments @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Möchten Sie das Dokument „“ wirklich in den Papierkorb verschieben? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Fehler beim Löschen des Dokuments @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 Dieser Vorgang wird die Archivdatei dieses Dokuments unwiderruflich neu erstellen. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 Die Archivdatei wird mit den aktuellen Einstellungen neu generiert. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 Die erneute Verarbeitung von „“ wird im Hintergrund gestartet. Schließen und öffnen Sie dieses Dokument nach Abschluss des Vorgangs erneut oder laden Sie es neu, um neue Inhalte anzuzeigen. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Fehler beim Ausführen der Aktion @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Fehler beim Herunterladen des Dokuments @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Seite einpassen @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Teilung bestätigen @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 Dieser Vorgang wird ausgewählte Dokumente in neue Dokumente aufteilen. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Der Teilungsvorgang für „“ wird im Hintergrund gestartet. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Fehler beim Ausführen des Teilungsvorgangs @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 Dieser Vorgang wird die Originalversion des aktuellen Dokuments unwiderruflich rotieren. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Der Rotationsvorgang für „“ wird im Hintergrund gestartet. Schließen und öffnen Sie das Dokument nach Abschluss des Vorgangs erneut, um die Änderungen zu sehen. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Fehler beim Ausführen des Rotationsvorgangs @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Seiten löschen bestätigen @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 Dieser Vorgang wird die ausgewählten Seiten unwiderruflich aus dem Originaldokument löschen. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Der Vorgang „Seiten löschen“ für „“ wird im Hintergrund ausgeführt. Schließen Sie das Dokument und öffnen Sie es erneut oder laden Sie es neu, nachdem der Vorgang abgeschlossen ist, um die Änderungen zu sehen. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Fehler beim Ausführen des Vorgangs „Seiten löschen“ @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 Fehler beim Laden des TIFF: @@ -10870,7 +10874,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Sie können die Tour in den Einstellungen erneut starten. diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf index b247b4e2b..8ef69383a 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Ιδιωτικό @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Σφάλμα αποθήκευσης του εγγράφου @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Σφάλμα διαγραφής εγγράφου @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Σφάλμα εκτέλεσης λειτουργίας @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Μπορείτε να επανεκκινήσετε την περιήγηση από τη σελίδα ρυθμίσεων. diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index 07912546d..ed345f8c0 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Eliminar enlace @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 No encontrado @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privado @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Documento "" guardado correctamente. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error al guardar el documento "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Error al guardar el documento @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 ¿Estás seguro de querer borrar el documento ""? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Error al eliminar documento @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 Esta operación recreará permanentemente el archivo de archivo para este documento. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 El archivo se regenerará con la configuración actual. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 La operación de reprocesamiento para "" comenzará en segundo plano. Cerrar y volver a abrir o volver a cargar este documento una vez finalizada la operación para ver el nuevo contenido. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error al ejecutar la operación @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error al descargar el documento @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Ajuste de página @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Confirmar división @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 Esta operación dividirá los documento(s) seleccionados en nuevos documentos. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 La operación de división para "" comenzará en segundo plano. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error al ejecutar la operación de división @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 Esta operación girará permanentemente la versión original del documento actual. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 La rotación de "" comenzará en segundo plano. Cerrar y volver a abrir el documento una vez finalizada la operación para ver los cambios. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error al ejecutar la operación de rotación @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Confirmar eliminación de páginas @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 Esta operación eliminará permanentemente las páginas seleccionadas del documento original. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 La operación de eliminar páginas para "" comenzará en segundo plano. Cerrar y volver a abrir o volver a cargar este documento una vez finalizada la operación para ver los cambios. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error al ejecutar la operación de eliminar páginas @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 Se ha producido un error al cargar el tif: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Puede reiniciar la visita desde la página de configuración. diff --git a/src-ui/src/locale/messages.et_EE.xlf b/src-ui/src/locale/messages.et_EE.xlf index 26807d1f3..892bb2438 100644 --- a/src-ui/src/locale/messages.et_EE.xlf +++ b/src-ui/src/locale/messages.et_EE.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Private @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Error saving document @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Error deleting document @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index c21d76cc8..73bd607e6 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Poista linkki @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Yksityinen @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Virhe tallennettaessa asiakirjaa @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Virhe asiakirjaa poistaessa @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Virhe toimintoa suoritettaessa @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Sivun sovitus @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Vahvista sivujen poisto @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Voit käynnistää opastuksen uudelleen asetussivulta. diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 7d22809f2..7e4c60e62 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Supprimer le lien @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Non trouvé @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privé @@ -6810,7 +6814,7 @@ src/app/components/dashboard/dashboard.component.html 42 - Hint: saved views can be created from the documents list + Astuce : les vues enregistrées peuvent être créées depuis la liste des documents Hello , welcome to @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document «  » enregistré avec succès. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Erreur lors de la sauvegarde du document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Erreur lors de la sauvegarde du document @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Voulez-vous vraiment déplacer le document «  » vers la corbeille ? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Erreur lors de la suppression du document @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 Cette action recréera définitivement le fichier d'archive pour ce document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 Le fichier d'archive va être régénéré avec les paramètres actuels. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 L'opération de retraitement pour "" commencera en arrière-plan. Fermez et rouvrez ou rechargez ce document une fois l'opération terminée pour voir le nouveau contenu. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Erreur lors de l'exécution de l'opération @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Erreur lors du téléchargement du document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Ajustement de la page @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Confirmation de la séparation @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 Cette opération séparera définitivement le(s) document(s) sélectionné(s) dans de nouveaux documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 L'opération de fractionnement pour "" commencera en arrière-plan. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Erreur lors de l’exécution de l’opération de séparation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 Cette action pivotera définitivement la version originale du document courant. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 La rotation de "" va commencer en arrière-plan. Fermez et rouvrez le document une fois l'opération terminée pour voir les modifications. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Erreur lors de l'exécution de l'opération de rotation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Confirmer la suppression des pages @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 Cette action supprimera définitivement les pages sélectionnées du document original. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 L'opération de suppression des pages pour "" commencera en arrière-plan. Fermez et rouvrez ou rechargez ce document une fois l'opération terminée pour voir les changements. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Erreur lors de l'exécution de l'opération de suppression des pages @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 Une erreur s’est produite lors du chargement du tiff : @@ -8871,7 +8875,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 250,254 - Correspondent: + Correspondant : Without correspondent @@ -8887,7 +8891,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 262,266 - Document type: + Type de document : Without document type @@ -8903,7 +8907,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 274,278 - Storage path: + Chemin de stockage : Without storage path @@ -8919,7 +8923,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 284,286 - Tag: + Étiquette : Without any tag @@ -10870,7 +10874,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Vous pouvez recommencer la visite depuis les paramètres. diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index 446830787..2c549d2b2 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 לא נמצא @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 פרטי @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 שגיאה בשמירת מסמך @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 שגיאה במחיקת מסמך @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 שגיאת הרצה @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 התאם תצוגה לרוחב הדף @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index d8f10b116..c98876181 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privatno @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Error saving document @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Error deleting document @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index 22e475d6c..be958ca61 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privát @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Dokumentum mentési hiba @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Hiba a dokumentum törlésében @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Hiba a művelet végrehajtásában @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Oldal illesztése @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 A túrát a beállítások oldalról indíthatja újra. diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf index b13363328..de5bb5a91 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Hapus tautan @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privat @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Kesalahan saat menyimpan dokumen @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Kesalahan saat menghapus dokumen @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index 915ce935d..c7595832a 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Rimuovi link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Non trovato @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privato @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Documento "" salvato con successo. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Errore durante il savataggio del documento "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Errore nel salvare il documento @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Vuoi davvero spostare il documento "" nel cestino? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Errore durante l'eliminazione del documento @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 Questa operazione ricreerà in modo permanente il file di archivio per questo documento. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 Il file di archivio verrà rigenerato con le impostazioni attuali. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 L'attività di rielaborazione per "" inizierà in background. Chiudi e riapri o ricarica questo documento dopo che l'operazione è stata completata per vedere i nuovi contenuti. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Errore nell'esecuzione dell'operazione @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Errore durante il download del documento @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Adatta Alla Pagina @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Conferma divisione @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 Questa operazione dividerà i documenti selezionati in nuovi documenti. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Errore durante l'operazione di divisione @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 Questa operazione ruoterà in modo permanente la versione originale del documento attuale. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Errore nell'esecuzione dell'operazione di rotazione @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Conferma eliminazione pagine @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 Questa operazione eliminerà definitivamente le pagine selezionate dal documento originale. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Errore durante l'eliminazione delle pagine @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Puoi riavviare il tour dalla pagina delle impostazioni. diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf index f48f01f65..29ab244df 100644 --- a/src-ui/src/locale/messages.ja_JP.xlf +++ b/src-ui/src/locale/messages.ja_JP.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 リンクを削除 @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 見つかりません @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 非公開 @@ -6810,7 +6814,7 @@ src/app/components/dashboard/dashboard.component.html 42 - Hint: saved views can be created from the documents list + ヒント: 保存されたビューは、ドキュメント リスト から作成できます Hello , welcome to @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 ドキュメント「」が正常に保存されました。 @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 ドキュメント「」の保存中にエラーが発生しました @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 ドキュメントの保存に失敗しました @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 ドキュメント "" をごみ箱に移動しますか? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 ドキュメントの削除に失敗しました @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 この操作により、このドキュメントのアーカイブファイルが永続的に再作成されます。 @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 アーカイブファイルは現在の設定で再生成されます。 @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 」の再処理操作がバックグラウンドで開始されます。操作が完了したら、このドキュメントを閉じて再度開くか、再読み込みして新しいコンテンツを表示してください。 @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 操作の実行に失敗しました @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 ドキュメントのダウンロードに失敗しました @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 ページに合わせる @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 本当に分割しますか? @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 この操作により、選択したドキュメントが新しいドキュメントに分割されます @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 」の分割操作がバックグラウンドで開始されます。 @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 分割処理に失敗しました @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 この操作により、現在のドキュメントの元のバージョンが恒久的に回転します。 @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 」の回転がバックグラウンドで開始されます。操作が完了したら、ドキュメントを閉じて再度開き、変更内容を確認してください。 @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 回転処理に失敗しました @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 本当にページを削除しますか? @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 この操作は選択したページを元のドキュメントから完全に削除します。 @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 」のページ削除操作がバックグラウンドで開始されます。操作が完了したら、このドキュメントを閉じて再度開くか、再読み込みして変更を確認してください。 @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 ページ削除の実行中にエラーが発生しました @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 TIFFの読み込み中にエラーが発生しました: @@ -8871,7 +8875,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 250,254 - Correspondent: + 発信元: Without correspondent @@ -8887,7 +8891,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 262,266 - Document type: + ドキュメントタイプ: Without document type @@ -8903,7 +8907,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 274,278 - Storage path: + ストレージパス: Without storage path @@ -8919,7 +8923,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 284,286 - Tag: + タグ: Without any tag @@ -10870,7 +10874,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 設定ページからツアーを再開することができます diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf index c976cc34e..e0fa98844 100644 --- a/src-ui/src/locale/messages.ko_KR.xlf +++ b/src-ui/src/locale/messages.ko_KR.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 링크 삭제 @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 찾을 수 없음 @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 비공개 @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 문서를 저장하는데 오류가 발생하였습니다. @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 "" 문서를 휴지통으로 정말 옮기시겠습니까? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 문서 삭제 오류 @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 이 작업을 수행하면 이 문서의 아카이브 파일이 영구적으로 다시 생성됩니다. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 아카이브 파일은 현재 설정으로 다시 생성됩니다. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 작업 수행중 오류가 발생하였습니다. @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 페이지 맞춤 @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 분할 확인 @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 이 작업을 수행하면 선택한 문서가 새 문서로 분할됩니다. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 분할 작업 실행 중 오류 발생 @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 이 작업을 수행하면 현재 문서의 원본 버전이 영구적으로 회전합니다. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 회전 작업 실행 중 오류 발생 @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 페이지 삭제 확인 @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 이 작업을 수행하면 원본 문서에서 선택한 페이지가 영구적으로 삭제됩니다. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 페이지 삭제 작업 실행 중 오류 발생 @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 tiff를 로드하는 동안 오류가 발생했습니다: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 나중에 설정 페이지에서 다시 둘러보기를 할 수 있습니다. diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index 1509fbf75..6ecec48c3 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Private @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Error saving document @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Error deleting document @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.lt_LT.xlf b/src-ui/src/locale/messages.lt_LT.xlf index 57d9060bb..7a11d0b9a 100644 --- a/src-ui/src/locale/messages.lt_LT.xlf +++ b/src-ui/src/locale/messages.lt_LT.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Private @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Error saving document @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Error deleting document @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf index dd0c875e1..e82055afc 100644 --- a/src-ui/src/locale/messages.lv_LV.xlf +++ b/src-ui/src/locale/messages.lv_LV.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privāts @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Error saving document @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Error deleting document @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.ms_MY.xlf b/src-ui/src/locale/messages.ms_MY.xlf index d22423f21..5a8cdf497 100644 --- a/src-ui/src/locale/messages.ms_MY.xlf +++ b/src-ui/src/locale/messages.ms_MY.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Private @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Error saving document @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Error deleting document @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index eb5c57cb9..d1e9557ea 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Link verwijderen @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Niet gevonden @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privé @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" succesvol opgeslagen. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Fout bij opslaan document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Fout bij opslaan document @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Weet je zeker dat je het document "" naar de prullenbak wilt verplaatsen? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Fout bij verwijderen document @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 Met deze bewerking wordt het gearchiveerde bestand voor dit document permanent opnieuw gemaakt. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 Het gearchiveerde bestand wordt opnieuw gegenereerd met de huidige instellingen. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 Het opnieuw verwerken van "" zal op de achtergrond beginnen. Sluit en open het document opnieuw nadat de bewerking is voltooid om de wijzigingen te zien. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Fout bij uitvoeren bewerking @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Fout bij downloaden document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Pagina passend maken @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Splitsen bevestigen @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 Deze bewerking splitst de geselecteerde document(en) op in nieuwe documenten. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Het splitsen van "" zal op de achtergrond beginnen. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Fout bij uitvoeren splits bewerking @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 Met deze bewerking wordt de originele versie van het huidige document permanent geroteerd. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Het roteren van "" zal op de achtergrond beginnen. Sluit en open het document opnieuw nadat de bewerking is voltooid om de wijzigingen te zien. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Fout bij uitvoeren van rotatie bewerking @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Bevestig pagina's verwijderen @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 Met deze bewerking worden de geselecteerde pagina's permanent uit het originele document verwijderd. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Pagina's verwijderen van "" zal op de achtergrond beginnen. Sluit en open het document opnieuw nadat de bewerking is voltooid om de wijzigingen te zien. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Fout bij het verwijderen van pagina's @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 Fout bij het laden van tiff: @@ -10870,7 +10874,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Je kan de rondleiding herstarten vanaf de instellingen pagina. diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index 4fc49fd4f..a590a8cb7 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privat @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Feil ved lagring av dokument @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Feil ved sletting av dokumentet @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Du kan starte omvisningen på nytt fra innstillingssiden. diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index b5f7df964..dfab5f39d 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Usuń link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Nie znaleziono @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Prywatny @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Błąd podczas zapisywania dokumentu @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Czy naprawdę chcesz przenieść dokument "" do kosza? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Błąd usuwania dokumentu @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 Ta operacja spowoduje trwałe odtworzenie pliku archiwum dla tego dokumentu. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 Plik archiwum zostanie ponownie wygenerowany z bieżącymi ustawieniami. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Błąd podczas wykonywania operacji @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Dopasuj do strony @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Potwierdzenie podziału @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 Ta operacja spowoduje podzielenie wybranych dokumentów na nowe. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Błąd podczas wykonywania operacji podziału @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 Ta operacja spowoduje trwały obrót oryginalnej wersji bieżącego dokumentu. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Błąd podczas wykonywania operacji obracania @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Potwierdzenie usunięcia stron @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 Ta operacja spowoduje trwałe usunięcie wybranych stron z oryginalnego dokumentu. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Błąd podczas wykonywania operacji usuwania stron @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Możesz ponownie uruchomić przegląd aplikacji ze strony ustawień. diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index d9c3a711f..e2efa2965 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remover link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Não encontrado @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privado @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Erro ao salvar documento @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Você realmente deseja mover o documento ""? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Erro ao apagar documento @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 Essa operação irá recriar permanentemente o arquivo para este documento. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 Os arquivos serão re-gerados com as configurações atuais. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Erro ao executar a operação de divisão @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Ajustar à Página @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Confirmar Divisão @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 Esta operação dividirá o(s) documento(s) selecionado(s) em novos documentos. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Erro ao executar a operação de divisão @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 Esta operação irá rotacionar permanentemente a versão original do documento atual. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Erro ao executar operação de rotação @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Deletar páginas confirmadas @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 Essa operação irá excluir permanentemente o(s) documento(s) selecionado(s). @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Erro ao executar operação de exclusão de páginas @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 Ocorreu um erro ao carregar tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Você pode reiniciar o tour na página de configurações.. diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index 85f1291ce..a1f369407 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privado @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Erro ao gravar documento @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Error deleting document @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Pode reiniciar o tutorial através da página das Configurações. diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index 40a985472..b9745a858 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Private @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Error saving document @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Eroare la ștergerea documentului @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index 18d221e02..94ffeef2a 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Убрать ссылку @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Не найден @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Личный @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Ошибка при сохранении документа @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Ошибка удаления документа @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Ошибка при выполнении операции @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Вместить страницу @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Вы можете перезапустить тур со страницы настроек. diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf index 2fac8392f..3552854fa 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Súkromné @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Chyba pri ukladaní dokumentu @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Error deleting document @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Sprievodcu môžete znova spustiť z nastavení. diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index ee3695c0c..cd1d19786 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Odstrani povezavo @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Zasebno @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Napaka pri shranjevanju dokumenta @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Ali res želite dokument "" premakniti v smetnjak? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Napaka pri brisanju dokumenta @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 To dejanje bo dokončno poustvarilo arhivsko datoteko za izbran dokument. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 Arhivska datoteka bo poustvarjena s trenutnimi nastavitvami. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Napaka pri izvajanju operacije @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Prileganje strani @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Potrdi razdelitev @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 To dejanje bo izbrane dokumente razdelilo v nove dokumente. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Napaka pri izvajanju razdelitve @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 To dejanje bo dokončno zavrtelo izvirno različico trenutnega dokumenta. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Napaka pri izvajanju vrtenja @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Potrdi izbris strani @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 To dejanje bo dokončno izbrisalo izbrane strani iz izvirnega dokumenta. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Napaka pri izvajanju brisanja strani @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Ogled lahko ponovite v nastavitvah. diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index 8e7895f30..00b08197f 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Ukloni link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Nije pronađen @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privatno @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Dokument "" je sačuvan uspešno. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Greška prilikom čuvanja dokumenta "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Greška prilikom čuvanja dokumenta @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Da li zaista želite da premestite ovaj dokument "" u otpad? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Greška prilikom brisanja dokumenta @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 Ova akcija će trajno ponovo kreirati arhivski fajl za ovaj dokument. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 Arhivski fajl će biti ponovo generisan sa trenutnim podešavanjima. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 Operacija ponovne obrade za "" će početi u pozadini. Zatvorite i ponovo otvorite ili ponovo učitajte dokument nakon što operacija bude završena da biste videli novi sadržaj. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Greška prilikom izvršavanja operacije @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Greška prilikom preuzimanja dokumenta @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Prilagodi stranicu @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Potvrdi deljenje @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 Ova akcija će podeliti odabrani dokument na nova dokumenta. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Operacija podele za "" će započeti u pozadini. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Greška prilikom izvršavanja akcije deljenja @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 Ova akcija će trajno rotirati originalnu verziju trenutnog dokumenta. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotacija za "" će započeti u pozadini. Zatvorite i ponovo otvorite ili ponovo učitajte ovaj dokument nakon što operacija bude završena da biste videli promene. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Greška prilikom izvršavanja akcije rotacije @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Potvrda brisanja stranica @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 Ova akcija će trajno obrisati odabrane stranice iz originalnog dokumenta. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Operacija brisanja stranica za "" će započeti u pozadini. Zatvorite i ponovo otvorite ili ponovo učitajte ovaj dokument nakon što operacija bude završena da biste videli promene. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Greška prilikom izvršavanja operacije brisanja stranica @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 Došlo je do greške prilikom učitavanja TIFF-a: @@ -10872,7 +10876,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Možete ponovo da pokrenete obilazak sa stranice sa podešavanjima. diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index 18a33716c..0bdf18294 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Ta bort länk @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Privat @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Kunde inte spara dokumentet @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Error deleting document @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Du kan starta om rundturen från inställningssidan. diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf index 91e7116c9..f4894c1c6 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 ส่วนตัว @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Error saving document @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 เกิดข้อผิดพลาดในการลบเอกสาร @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index c67c9104e..4531d8256 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5869,11 +5869,11 @@ tüm krite Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Linki sil @@ -5881,7 +5881,7 @@ tüm krite Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5893,7 +5893,7 @@ tüm krite Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Bulunamadı @@ -5990,7 +5990,11 @@ tüm krite src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Gizli @@ -7612,7 +7616,7 @@ tüm krite src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7620,7 +7624,7 @@ tüm krite Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7628,7 +7632,7 @@ tüm krite Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Error saving document @@ -7636,7 +7640,7 @@ tüm krite Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7644,7 +7648,7 @@ tüm krite Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7656,7 +7660,7 @@ tüm krite Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7668,7 +7672,7 @@ tüm krite Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Error deleting document @@ -7676,7 +7680,7 @@ tüm krite Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7688,7 +7692,7 @@ tüm krite This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7696,7 +7700,7 @@ tüm krite The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7704,7 +7708,7 @@ tüm krite Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7712,7 +7716,7 @@ tüm krite Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Error executing operation @@ -7720,7 +7724,7 @@ tüm krite Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7728,7 +7732,7 @@ tüm krite Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7736,7 +7740,7 @@ tüm krite Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7744,7 +7748,7 @@ tüm krite This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7752,7 +7756,7 @@ tüm krite Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7760,7 +7764,7 @@ tüm krite Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7768,7 +7772,7 @@ tüm krite Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7780,7 +7784,7 @@ tüm krite This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7788,7 +7792,7 @@ tüm krite Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7796,7 +7800,7 @@ tüm krite Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7804,7 +7808,7 @@ tüm krite Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7812,7 +7816,7 @@ tüm krite This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7820,7 +7824,7 @@ tüm krite Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7828,7 +7832,7 @@ tüm krite Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7836,11 +7840,11 @@ tüm krite An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10873,7 +10877,7 @@ tüm krite You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf index 578016cf0..f46e5bbca 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Видалити посилання @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Не знайдено @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Приватний @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Помилка при збереженні документа @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Ви дійсно хочете перенести документ "" до смітника? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Помилка видалення документа @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 Ця операція остаточно відновить архівний файл цього документа. @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 Файл архіву буде повторно створений з поточними налаштуваннями. @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Помилка виконання операції @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Вмістити сторінку @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Підтвердження розділу @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 Ця операція розділить обраний(і) документ(и) на нові документи. @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Помилка виконання операції розділення @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 Ця операція остаточно поверне оригінальну версію поточного документа. @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Помилка виконання операції обертання @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Підтвердження видалення сторінок @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 Ця операція остаточно видалить вибрані сторінки з оригінального документа. @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Помилка виконання операції видалення сторінок @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 Ви можете пройти знайомство ще раз зі сторінки налаштувань. diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf index 0a76a4676..3233d7f90 100644 --- a/src-ui/src/locale/messages.vi_VN.xlf +++ b/src-ui/src/locale/messages.vi_VN.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2747,19 +2747,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3428,7 +3428,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3612,7 +3612,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3624,7 +3624,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3696,7 +3696,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5869,11 +5869,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 Remove link @@ -5881,7 +5881,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5893,7 +5893,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 Not found @@ -5990,7 +5990,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 Private @@ -7612,7 +7616,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7620,7 +7624,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7628,7 +7632,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 Error saving document @@ -7636,7 +7640,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 Do you really want to move the document "" to the trash? @@ -7644,7 +7648,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7656,7 +7660,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7668,7 +7672,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 Lỗi khi xóa tài liệu. @@ -7676,7 +7680,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7688,7 +7692,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 This operation will permanently recreate the archive file for this document. @@ -7696,7 +7700,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 The archive file will be re-generated with the current settings. @@ -7704,7 +7708,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7712,7 +7716,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 Lỗi thực hiện thao tác @@ -7720,7 +7724,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7728,7 +7732,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 Page Fit @@ -7736,7 +7740,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 Split confirm @@ -7744,7 +7748,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 This operation will split the selected document(s) into new documents. @@ -7752,7 +7756,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7760,7 +7764,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 Error executing split operation @@ -7768,7 +7772,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7780,7 +7784,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 This operation will permanently rotate the original version of the current document. @@ -7788,7 +7792,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7796,7 +7800,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 Error executing rotate operation @@ -7804,7 +7808,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 Delete pages confirm @@ -7812,7 +7816,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 This operation will permanently delete the selected pages from the original document. @@ -7820,7 +7824,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7828,7 +7832,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 Error executing delete pages operation @@ -7836,11 +7840,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 An error occurred loading tiff: @@ -10873,7 +10877,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index 4409fe211..f93f696d0 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 删除链接 @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 页面未找到 @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 Document "" saved successfully. @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 Error saving document "" @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 保存文档时发生错误 @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 您真的要将文档 "" 移动到回收站吗? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 删除文档时发生错误。 @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 此操作将永久重新创建此文档的归档文件。 @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 归档文件将使用当前设置重新生成。 @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 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. @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 执行操作时发生错误 @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 Error downloading document @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 适应页面 @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 Split operation for "" will begin in the background. @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 执行旋转操作时发生错误 @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 执行删除页面操作时发生错误 @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 加载内容时发生错误: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 您可以从设置页面重新开始导览。 diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index 5fbed54d2..baf0fecaa 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -786,7 +786,7 @@ src/app/components/common/input/document-link/document-link.component.html - 59 + 58 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2746,19 +2746,19 @@ src/app/components/document-detail/document-detail.component.ts - 968 + 965 src/app/components/document-detail/document-detail.component.ts - 1328 + 1323 src/app/components/document-detail/document-detail.component.ts - 1367 + 1362 src/app/components/document-detail/document-detail.component.ts - 1408 + 1403 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3426,7 +3426,7 @@ src/app/components/document-detail/document-detail.component.ts - 921 + 918 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3610,7 +3610,7 @@ Saved field "". src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 126 + 129 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3622,7 +3622,7 @@ Error saving field. src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts - 135 + 138 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -3694,7 +3694,7 @@ src/app/components/document-detail/document-detail.component.ts - 1385 + 1380 src/app/guards/dirty-saved-view.guard.ts @@ -5867,11 +5867,11 @@ Remove link src/app/components/common/input/document-link/document-link.component.html - 44 + 43 src/app/components/common/input/document-link/document-link.component.html - 51 + 50 移除連結 @@ -5879,7 +5879,7 @@ Open link src/app/components/common/input/document-link/document-link.component.html - 47 + 46 src/app/components/common/input/url/url.component.html @@ -5891,7 +5891,7 @@ Not found src/app/components/common/input/document-link/document-link.component.html - 52 + 51 找不到 @@ -5988,7 +5988,11 @@ src/app/pipes/object-name.pipe.ts - 43 + 40 + + + src/app/pipes/object-name.pipe.ts + 46 不公開 @@ -7610,7 +7614,7 @@ src/app/components/document-detail/document-detail.component.ts - 839 + 836 文件「」儲存成功。 @@ -7618,7 +7622,7 @@ Error saving document "" src/app/components/document-detail/document-detail.component.ts - 845 + 842 文件「」儲存時發生錯誤 @@ -7626,7 +7630,7 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 890 + 887 儲存文件時發生錯誤 @@ -7634,7 +7638,7 @@ Do you really want to move the document "" to the trash? src/app/components/document-detail/document-detail.component.ts - 922 + 919 確定要將文件「」移至垃圾桶? @@ -7642,7 +7646,7 @@ Documents can be restored prior to permanent deletion. src/app/components/document-detail/document-detail.component.ts - 923 + 920 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7654,7 +7658,7 @@ Move to trash src/app/components/document-detail/document-detail.component.ts - 925 + 922 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7666,7 +7670,7 @@ Error deleting document src/app/components/document-detail/document-detail.component.ts - 944 + 941 刪除文件時發生錯誤 @@ -7674,7 +7678,7 @@ Reprocess confirm src/app/components/document-detail/document-detail.component.ts - 964 + 961 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7686,7 +7690,7 @@ This operation will permanently recreate the archive file for this document. src/app/components/document-detail/document-detail.component.ts - 965 + 962 將永久重新建立此文件的封存檔案。 @@ -7694,7 +7698,7 @@ The archive file will be re-generated with the current settings. src/app/components/document-detail/document-detail.component.ts - 966 + 963 封存檔案將以目前設定重新產生。 @@ -7702,7 +7706,7 @@ Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 976 + 973 」的重新處理將於背景開始執行。完成後,請關閉並重新打開或重新載入此文件以檢視更新內容。 @@ -7710,7 +7714,7 @@ Error executing operation src/app/components/document-detail/document-detail.component.ts - 987 + 984 執行作業時發生錯誤 @@ -7718,7 +7722,7 @@ Error downloading document src/app/components/document-detail/document-detail.component.ts - 1034 + 1031 下載文件時發生錯誤 @@ -7726,7 +7730,7 @@ Page Fit src/app/components/document-detail/document-detail.component.ts - 1113 + 1110 符合頁面大小 @@ -7734,7 +7738,7 @@ Split confirm src/app/components/document-detail/document-detail.component.ts - 1326 + 1321 確認拆分 @@ -7742,7 +7746,7 @@ This operation will split the selected document(s) into new documents. src/app/components/document-detail/document-detail.component.ts - 1327 + 1322 將把所選的文件拆分成新文件。 @@ -7750,7 +7754,7 @@ Split operation for "" will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1343 + 1338 」的拆分將於背景開始執行。 @@ -7758,7 +7762,7 @@ Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1352 + 1347 執行拆分作業時發生錯誤 @@ -7766,7 +7770,7 @@ Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1365 + 1360 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -7778,7 +7782,7 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1366 + 1361 將永久旋轉目前文件的原始版本。 @@ -7786,7 +7790,7 @@ Rotation of "" will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1382 + 1377 」的旋轉將於背景開始執行。完成後,請關閉並重新打開或重新載入此文件以檢視更新內容。 @@ -7794,7 +7798,7 @@ Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1394 + 1389 執行旋轉作業時發生錯誤 @@ -7802,7 +7806,7 @@ Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1406 + 1401 確認刪除頁面 @@ -7810,7 +7814,7 @@ This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1407 + 1402 將永久刪除原始文件中所選的頁面。 @@ -7818,7 +7822,7 @@ Delete pages operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1422 + 1417 」的頁面刪除將於背景開始執行。完成後,請關閉並重新打開或重新載入此文件以檢視更新內容。 @@ -7826,7 +7830,7 @@ Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1431 + 1426 執行頁面刪除作業時發生錯誤 @@ -7834,11 +7838,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1491 + 1486 src/app/components/document-detail/document-detail.component.ts - 1495 + 1490 讀取 TIFF 檔時發生錯誤: @@ -10871,7 +10875,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 667 + 664 可以從設定頁面重新開始導覽。 diff --git a/src/locale/af_ZA/LC_MESSAGES/django.po b/src/locale/af_ZA/LC_MESSAGES/django.po index 0a5c0f453..00b63efef 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:34\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Afrikaans\n" "Language: af_ZA\n" @@ -1222,28 +1222,28 @@ msgstr "Teken asb. aan." msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Gebruikersnaam" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Wagwoord" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Teken aan" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "" msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "" @@ -1555,139 +1559,139 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Engels (VS)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arabies" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Belorussies" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Katalaans" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Tsjeggies" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Deens" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Duits" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Engels (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Spaans" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Fins" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Frans" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italiaans" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luxemburgs" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Nederlands" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Pools" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugees (Brasilië)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugees" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Roemeens" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Russies" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Sloweens" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Serwies" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Sweeds" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turks" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Vereenvoudigde Sjinees" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/ar_AR/LC_MESSAGES/django.po b/src/locale/ar_AR/LC_MESSAGES/django.po index 0f1e1e673..4ba99ffe6 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:34\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Arabic\n" "Language: ar_SA\n" @@ -1223,28 +1223,28 @@ msgstr "الرجاء تسجيل الدخول." msgid "Don't have an account yet? Sign up" msgstr "ليس لديك حسابٌ بعدُ؟ سجِّل" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "كلمة المرور" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "تسجيل الدخول" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "نسيت كلمة المرور؟" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "أو تسجيل الدخول عبر" @@ -1317,21 +1317,25 @@ msgstr "تم تعيين كلمة المرور الجديدة الخاصة بك. msgid "Paperless-ngx sign up" msgstr "التسجيل في Paperless-ngx" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "لديك حسابٌ مسبقاً؟ أُدخُل" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "كلمة المرور (مجددا)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "إنشاء حساب" @@ -1556,139 +1560,139 @@ msgstr "شعار التطبيق" msgid "paperless application settings" msgstr "إعدادات التطبيق paperless" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "الإنجليزية (الولايات المتحدة)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "العربية" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "اللغة الأفريقانية" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "البيلاروسية" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "البلغارية" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "اللغة الكتالونية" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "التشيكية" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "الدانماركية" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "الألمانية" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "اليونانية" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "الإنجليزية (المملكة المتحدة)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "الإسبانية" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "الفنلندية" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "الفرنسية" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "المجرية" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "الإيطالية" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "اليابانية" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "اللوكسمبرجية" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "النرويجية" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "الهولندية" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "البولندية" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "البرتغالية (البرازيل)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "البرتغالية" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "الرومانية" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "الروسية" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "السلوفاكية" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "السلوفانية" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "الصربية" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "السويدية" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "التركية" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "الأوكرانية" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "الصينية المبسطة" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/be_BY/LC_MESSAGES/django.po b/src/locale/be_BY/LC_MESSAGES/django.po index ef848be72..698fa9a9e 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:34\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Belarusian\n" "Language: be_BY\n" @@ -1222,28 +1222,28 @@ msgstr "Калі ласка, увайдзіце." msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Пароль" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Увайсці" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "" msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "" @@ -1555,139 +1559,139 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Англійская (ЗША)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Беларуская" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Чэшская" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Дацкая" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Нямецкая" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Англійская (Вялікабрытанія)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Іспанская" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Французская" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Італьянская" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Люксембургская" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Нідэрландская" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Польская" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Партугальская (Бразілія)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Партугальская" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Румынская" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Руская" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Славенская" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Сербская" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Шведская" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Турэцкая" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Кітайская спрошчаная" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/bg_BG/LC_MESSAGES/django.po b/src/locale/bg_BG/LC_MESSAGES/django.po index 09b0bce08..ac0f62d49 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:34\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Language: bg_BG\n" @@ -1223,28 +1223,28 @@ msgstr "Моля, впишете се." msgid "Don't have an account yet? Sign up" msgstr "Все още нямате профил? Регистрирайте се" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Парола" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Вход" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Забравена парола?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "или влезте чрез" @@ -1317,21 +1317,25 @@ msgstr "Вашата нова парола е зададена. Вече мож msgid "Paperless-ngx sign up" msgstr "Регистрация" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "Вече имате акаунт? Влезте" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Парола (повторно)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Нов профил" @@ -1556,139 +1560,139 @@ msgstr "Лого на софтуера" msgid "paperless application settings" msgstr "настройки на софтуера" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Английски (САЩ)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Арабски" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Африканс" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Беларуски" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Български" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Каталунски" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Чешки" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Датски" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Немски" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Гръцки" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Английски (Великобритания)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Испански" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Финландски" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Френски" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Унгарски" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Италиански" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Японски" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Люксембургски" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Норвежки" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Холандски" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Полски" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Португалски (Бразилия)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Португалски" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Румънски" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Руски" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Словашки" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Словенски" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Сръбски" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Шведски" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Турски" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Украински" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Китайски опростен" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po index 4d7f9df28..1d4cb85c3 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-20 12:12\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-04-01 00:38\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Language: ca_ES\n" @@ -1223,28 +1223,28 @@ msgstr "Siusplau valida't." msgid "Don't have an account yet? Sign up" msgstr "Encara no tens un compte? Registra't" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Nom usuari" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Contrasenya" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Validació" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Contrasenya oblidada?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "o accedeix via" @@ -1317,21 +1317,25 @@ msgstr "Contrasenya enviada. Pots iniciar sessió" msgid "Paperless-ngx sign up" msgstr "Registra't a Paperless-ngx" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "Ja tens un compte? Connecta't" -#: documents/templates/account/signup.html:16 +#: documents/templates/account/signup.html:19 +msgid "Note: This is the first user account for this installation and will be granted superuser privileges." +msgstr "Nota: Aquest és el primer compte d'usuari per aquesta inatal•lació i seran concedits privilegis de super usuari." + +#: documents/templates/account/signup.html:23 #: documents/templates/socialaccount/signup.html:14 msgid "Email (optional)" msgstr "Correu (opcional)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Contrasenya (altre cop)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Registra't" @@ -1556,139 +1560,139 @@ msgstr "Logo Aplicació" msgid "paperless application settings" msgstr "configuració de l'aplicació paperless" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Anglès (US)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Àrab" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Africà" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Bielorús" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Búlgar" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Català" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Txec" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Danès" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Alemany" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Grec" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Anglès (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Espanyol" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Finès" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Francès" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Hongarès" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italià" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Japonès" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "Coreà" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luxemburguès" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Noruec" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Holandès" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polonès" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portuguès (Brasil)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portuguès" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Romanès" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Rus" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Eslovac" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Eslovè" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Serbi" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Suec" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turc" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ucranià" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Xinès Simplificat" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "Xinès tradicional" diff --git a/src/locale/cs_CZ/LC_MESSAGES/django.po b/src/locale/cs_CZ/LC_MESSAGES/django.po index 51e46a40e..a34179fde 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:34\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Czech\n" "Language: cs_CZ\n" @@ -1223,28 +1223,28 @@ msgstr "Prosím přihlaste se." msgid "Don't have an account yet? Sign up" msgstr "Ještě nemáte účet? Zaregistrujte se" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Uživatelské jméno" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Heslo" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Přihlásit se" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Zapomněli jste heslo?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "nebo se přihlásit prostřednictvím" @@ -1317,21 +1317,25 @@ msgstr "Vaše nové heslo bylo nastaveno. Nyní se můžete Sign in" msgstr "Již máte účet? Přihlaste se" -#: documents/templates/account/signup.html:16 +#: 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 "E-mail (volitelný)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Heslo (znovu)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Registrace" @@ -1556,139 +1560,139 @@ msgstr "Logo aplikace" msgid "paperless application settings" msgstr "nastavení aplikace paperless" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Angličtina (US)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arabština" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Afrikánština" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Běloruština" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Bulharština" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Katalánština" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Čeština" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Dánština" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Němčina" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Řečtina" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Angličtina (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Španělština" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Finština" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Francouzština" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Maďarština" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italština" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Japonština" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "Korejština" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Lucemburština" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norština" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Holandština" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polština" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugalština (Brazílie)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugalština" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Rumunština" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Ruština" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Slovenština" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Slovinština" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Srbština" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Švédština" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turečtina" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ukrajinština" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Čínština (zjednodušená)" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/da_DK/LC_MESSAGES/django.po b/src/locale/da_DK/LC_MESSAGES/django.po index 1f33be3c0..e340b9f5d 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:34\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Danish\n" "Language: da_DK\n" @@ -1223,28 +1223,28 @@ msgstr "Log venligst ind." msgid "Don't have an account yet? Sign up" msgstr "Har ingen konto endnu? Tilmeld" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Brugernavn" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Adgangskode" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Log ind" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Glemt adgangskoden?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "eller log ind via" @@ -1317,21 +1317,25 @@ msgstr "Den nye adgangskode er indstillet. Der kan nu msgid "Paperless-ngx sign up" msgstr "Paperless-ngx tilmelding" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "Har allerede en konto? Log ind" -#: documents/templates/account/signup.html:16 +#: 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 "E-mail (valgfrit)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Adganskode (igen)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Tillmeld" @@ -1556,139 +1560,139 @@ msgstr "Applikationslogo" msgid "paperless application settings" msgstr "paperless-applikationsindstillinger" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Engelsk (USA)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Afrikaans" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Hviderussisk" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Bulgarsk" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Katalansk" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Tjekkisk" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Dansk" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Tysk" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Græsk" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Engelsk (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Spansk" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Finsk" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Fransk" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Ungarsk" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italiensk" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Japansk" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "Koreansk" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luxemburgsk" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norsk" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Hollandsk" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polsk" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugisisk (Brasilien)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugisisk" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Romansk" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Russisk" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Slovakisk" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Slovensk" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Serbisk" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Svensk" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Tyrkisk" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ukrainsk" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Kinesisk, forenklet" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "Kinesisk, traditionelt" diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index 4c81cb3c9..409694f5d 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-18 12:12\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-31 00:36\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -1184,7 +1184,7 @@ msgstr "Ungültige Variable erkannt." #: documents/templates/account/account_inactive.html:5 msgid "Paperless-ngx account inactive" -msgstr "Papierlos-ngx-Konto inaktiv" +msgstr "Paperless-ngx Konto inaktiv" #: documents/templates/account/account_inactive.html:9 msgid "Account inactive." @@ -1223,28 +1223,28 @@ msgstr "Bitte melden Sie sich an." msgid "Don't have an account yet? Sign up" msgstr "Sie haben noch kein Konto? Registrieren" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Benutzername" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Kennwort" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Anmelden" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Kennwort vergessen?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "oder anmelden über" @@ -1317,21 +1317,25 @@ msgstr "Ihr neues Kennwort wurde gesetzt. Sie können sich jetzt unter Sign in" msgstr "Sie haben bereits ein Konto? Anmelden" -#: documents/templates/account/signup.html:16 +#: documents/templates/account/signup.html:19 +msgid "Note: This is the first user account for this installation and will be granted superuser privileges." +msgstr "Hinweis: Dies ist das erste Benutzerkonto für diese Installation, dem auch Administratorrechte gewährt werden." + +#: documents/templates/account/signup.html:23 #: documents/templates/socialaccount/signup.html:14 msgid "Email (optional)" msgstr "E-Mail (optional)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Kennwort (wiederholen)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Registrieren" @@ -1556,139 +1560,139 @@ msgstr "Anwendungslogo" msgid "paperless application settings" msgstr "Paperless-ngx-Anwendungseinstellungen" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Englisch (US)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arabisch" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Afrikanisch" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Belarussisch" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Bulgarisch" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Katalanisch" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Tschechisch" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Dänisch" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Deutsch" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Griechisch" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Englisch (UK)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Spanisch" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Finnisch" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Französisch" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Ungarisch" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italienisch" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Japanisch" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "Koreanisch" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luxemburgisch" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norwegisch" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Niederländisch" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polnisch" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugiesisch (Brasilien)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugiesisch" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Rumänisch" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Russisch" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Slowakisch" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Slowenisch" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Serbisch" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Schwedisch" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Türkisch" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ukrainisch" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Chinesisch (vereinfacht)" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "Chinesisch (traditionell)" diff --git a/src/locale/el_GR/LC_MESSAGES/django.po b/src/locale/el_GR/LC_MESSAGES/django.po index 5b204994d..f5aab2361 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Greek\n" "Language: el_GR\n" @@ -1222,28 +1222,28 @@ msgstr "Παρακαλώ συνδεθείτε." msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Κωδικός" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Είσοδος" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Ξεχάσατε τον κωδικό σας;" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "ή συνδεθείτε μέσω" @@ -1316,21 +1316,25 @@ msgstr "Έχει οριστεί νέος κωδικός πρόσβασης. Μπ msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "" -#: documents/templates/account/signup.html:16 +#: 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 "Email (προαιρετικό)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Κωδικός πρόσβασης (ξανά)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Εγγραφή" @@ -1555,139 +1559,139 @@ msgstr "Λογότυπο εφαρμογής" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Αγγλικά (ΗΠΑ)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Αραβικά" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Αφρικανικά" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Λευκορωσικά" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Βουλγαρικά" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Καταλανικά" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Τσέχικα" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Δανέζικα" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Γερμανικά" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Ελληνικά" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Αγγλικά (Ηνωμένο Βασίλειο)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Ισπανικά" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Φινλανδικά" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Γαλλικά" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Ουγγρικά" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Ιταλικά" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Ιαπωνικά" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "Κορεάτικα" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Λουξεμβουργικά" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Νορβηγικά" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Ολλανδικά" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Πολωνικά" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Πορτογαλικά (Βραζιλίας)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Πορτογαλικά" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Ρουμάνικα" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Ρωσικά" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Σλοβακικά" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Σλοβενικά" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Σερβικά" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Σουηδικά" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Τούρκικα" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ουκρανικά" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Κινέζικα Απλοποιημένα" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/es_ES/LC_MESSAGES/django.po b/src/locale/es_ES/LC_MESSAGES/django.po index 6f60f7595..cd23aeda7 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -1223,28 +1223,28 @@ msgstr "Por favor, inicie sesión" msgid "Don't have an account yet? Sign up" msgstr "¿Aún no tienes una cuenta? Regístrate" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Usuario" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Contraseña" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Iniciar sesión" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "¿Olvidaste tu contraseña?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "o inicie sesión vía" @@ -1317,21 +1317,25 @@ msgstr "Se ha establecido tu nueva contraseña. Ahora puedes Sign in" msgstr "¿Ya tienes una cuenta? Inicia sesión" -#: documents/templates/account/signup.html:16 +#: 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 "Correo electrónico (opcional)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Contraseña (otra vez)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Registrarse" @@ -1556,139 +1560,139 @@ msgstr "Logo de la aplicación" msgid "paperless application settings" msgstr "Ajustes de la aplicación paperless" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Inglés (US)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Árabe" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Africano" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Bielorruso" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Búlgaro" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Catalán" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Checo" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Danés" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Alemán" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Griego" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Inglés (Gran Bretaña)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Español" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Finlandés" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Francés" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Húngaro" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italiano" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Japonés" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "Coreano" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luxemburgués" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Noruego" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Alemán" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polaco" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugués (Brasil)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugués" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Rumano" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Ruso" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Eslovaco" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Esloveno" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Serbio" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Sueco" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turco" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ucraniano" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Chino simplificado" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "Chino tradicional" diff --git a/src/locale/et_EE/LC_MESSAGES/django.po b/src/locale/et_EE/LC_MESSAGES/django.po index 6593bc1cb..4aa76efde 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:34\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Estonian\n" "Language: et_EE\n" @@ -1222,28 +1222,28 @@ msgstr "" msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "" msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "" @@ -1555,139 +1559,139 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/fi_FI/LC_MESSAGES/django.po b/src/locale/fi_FI/LC_MESSAGES/django.po index 231be3c0c..6fdea1a07 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Language: fi_FI\n" @@ -1223,28 +1223,28 @@ msgstr "Kirjaudu sisään." msgid "Don't have an account yet? Sign up" msgstr "Eikö sinulla ole vielä tiliä? Rekisteröidy" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Käyttäjänimi" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Salasana" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Kirjaudu sisään" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Unohditko salasanan?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "tai kirjaudu käyttäen" @@ -1317,21 +1317,25 @@ msgstr "Uusi salasanasi on asetettu. Voit nyt kirjautu msgid "Paperless-ngx sign up" msgstr "Paperless-ngx:n rekisteröityminen" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "Onko sinulla jo tili? Kirjaudu sisään" -#: documents/templates/account/signup.html:16 +#: 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 "Sähköposti (valinnainen)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Salasana (uudestaan)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Rekisteröidy" @@ -1556,139 +1560,139 @@ msgstr "Sovelluksen logo" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Englanti (US)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arabialainen" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "valkovenäjä" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Katalaani" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Tšekki" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Tanska" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Saksa" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Kreikka" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Englanti (US)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Espanja" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Suomi" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Ranska" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italia" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luxemburg" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norja" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Hollanti" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "puola" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "portugali (Brasilia)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "portugali" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "romania" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "venäjä" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Slovakia" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Slovenia" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Serbia" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "ruotsi" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turkki" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ukraina" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Kiina (yksinkertaistettu)" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po index 1d99c039b..e1feffab6 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:34\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-04-02 00:33\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -1188,7 +1188,7 @@ msgstr "Compte Paperless-ngx inactif" #: documents/templates/account/account_inactive.html:9 msgid "Account inactive." -msgstr "" +msgstr "Compte inactif." #: documents/templates/account/account_inactive.html:14 msgid "This account is inactive." @@ -1222,28 +1222,28 @@ msgstr "Veuillez vous connecter." msgid "Don't have an account yet? Sign up" msgstr "Vous n’avez pas encore de compte ? Inscrivez-vous" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Nom d'utilisateur" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Mot de passe" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "S'identifier" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Mot de passe oublié ?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "ou se connecter via" @@ -1316,21 +1316,25 @@ msgstr "Votre nouveau mot de passe a été défini. Vous pouvez maintenant Sign in" msgstr "Vous avez déjà un compte ? Connectez-vous" -#: documents/templates/account/signup.html:16 +#: documents/templates/account/signup.html:19 +msgid "Note: This is the first user account for this installation and will be granted superuser privileges." +msgstr "Remarque : ceci est le premier compte utilisateur pour cette installation et lui sera donné les privilèges de superutilisateur." + +#: documents/templates/account/signup.html:23 #: documents/templates/socialaccount/signup.html:14 msgid "Email (optional)" msgstr "Adresse électronique (facultatif)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Mot de passe (à nouveau)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "S'inscrire" @@ -1555,139 +1559,139 @@ msgstr "Nom de l'application" msgid "paperless application settings" msgstr "paramètres de l'application paperless" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Anglais (US)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arabe" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Afrikaans" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Biélorusse" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Bulgare" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Catalan" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Tchèque" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Danois" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Allemand" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Grec" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Anglais (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Espagnol" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Finnois" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Français" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Hongrois" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italien" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Japonais" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "Coréen" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luxembourgeois" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norvégien" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Néerlandais" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polonais" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugais (Brésil)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugais" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Roumain" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Russe" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Solvaque" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Slovène" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Serbe" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Suédois" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turc" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ukrainien" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Chinois simplifié" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "Chinois traditionnel" diff --git a/src/locale/he_IL/LC_MESSAGES/django.po b/src/locale/he_IL/LC_MESSAGES/django.po index f457e3acb..ca14e5b81 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Language: he_IL\n" @@ -546,7 +546,7 @@ msgstr "" #: documents/models.py:494 msgid "mime type is" -msgstr "" +msgstr "סוג הקובץ הוא: " #: documents/models.py:504 msgid "rule type" @@ -566,7 +566,7 @@ msgstr "חוקי סינון" #: documents/models.py:534 msgid "Auto Task" -msgstr "" +msgstr "משימה אוטומטית" #: documents/models.py:535 msgid "Scheduled Task" @@ -1223,28 +1223,28 @@ msgstr "נא התחבר." msgid "Don't have an account yet? Sign up" msgstr "איך לך עדיין חשבון? הרשם" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "סיסמה" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "התחבר" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "שכחת את הסיסמה?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "או התחבר דרך" @@ -1317,21 +1317,25 @@ msgstr "הסיסמה שלך הוגדרה בהצלחה במערכת. אתה יכ msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "יש לך חשבון? התחבר" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "סיסמה (שוב)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "התחבר" @@ -1556,139 +1560,139 @@ msgstr "לוגו יישום" msgid "paperless application settings" msgstr "הגדרות יישום paperless" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "אנגלית (ארה״ב)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "ערבית" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "אפריקאנס" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "בלרוסית" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "בולגרית" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "קטלאנית" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "צ'כית" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "דנית" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "גרמנית" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "יוונית" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "אנגלית (בריטניה)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "ספרדית" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "פינית" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "צרפתית" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "הונגרית" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "איטלקית" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "יפנית" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "לוקסמבורגית" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "נורווגית" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "הולנדית" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "פולנית" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "פורטוגלית ברזילאית" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "פורטוגלית" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "רומנית" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "רוסית" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "סלובקית" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "סלובנית" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "סרבית" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "שוודית" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "טורקית" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "אוקראינית" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "סינית מפושטת" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/hr_HR/LC_MESSAGES/django.po b/src/locale/hr_HR/LC_MESSAGES/django.po index e675aa379..afaead941 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:34\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Croatian\n" "Language: hr_HR\n" @@ -1222,28 +1222,28 @@ msgstr "Molimo prijavite se." msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Korisničko ime" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Lozinka" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Prijava" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "" msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "" @@ -1555,139 +1559,139 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Engleski (US)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arapski" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Bjeloruski" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Češki" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Danski" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Njemački" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Engleski (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Španjolski" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Francuski" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Talijanski" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luksemburški" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Nizozemski" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Poljski" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugalski (Brazil)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugalski" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Rumunjski" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Ruski" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Slovenski" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Srpski" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Švedski" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turski" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Pojednostavljeni kineski" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/hu_HU/LC_MESSAGES/django.po b/src/locale/hu_HU/LC_MESSAGES/django.po index 914ceacc7..cf93820da 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" @@ -1222,28 +1222,28 @@ msgstr "Kérjük, jelentkezzen be." msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Felhasználónév" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Jelszó" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Bejelentkezés" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Elfelejtette jelszavát?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "Az új jelszót beállítottuk. Mostantól a c msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "" @@ -1555,139 +1559,139 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Angol (US)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arab" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Afrikai" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Fehérorosz" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Bolgár" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Katalán" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Cseh" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Dán" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Német" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Görög" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Angol (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Spanyol" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Finn" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Francia" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Magyar" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Olasz" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luxemburgi" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norvég" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Holland" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Lengyel" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugál (Brazília)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugál" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Román" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Orosz" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Szlovák" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Szlovén" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Szerb" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Svéd" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Török" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ukrán" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Kínai egyszerűsített" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/id_ID/LC_MESSAGES/django.po b/src/locale/id_ID/LC_MESSAGES/django.po index ecd75207d..88b3a36d6 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-18 00:32\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Language: id_ID\n" @@ -1223,28 +1223,28 @@ msgstr "Mohon masuk." msgid "Don't have an account yet? Sign up" msgstr "Tidak memiliki akun? Daftar" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Nama pengguna" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Kata sandi" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Masuk" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Lupa kata sandi Anda?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "atau masuk melalui" @@ -1317,21 +1317,25 @@ msgstr "Kata sandi baru sudah di set. Silakan MasukSign in" msgstr "Sudah memiliki akun? Masuk" -#: documents/templates/account/signup.html:16 +#: 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 "Surat elektronik (tidak wajib)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Kata Sandi (ulang)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Daftar" @@ -1556,139 +1560,139 @@ msgstr "Judul aplikasi" msgid "paperless application settings" msgstr "pengaturan aplikasi paperless" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Inggris (AS)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arab" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Bahasa Afrika" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Belarusia" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Bahasa Bulgaria" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Bahasa Ceko" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Jerman" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Yunani" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Inggris (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Spanyol" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Prancis" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Hungaria" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italia" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Bahasa Jepang" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "Bahasa Korea" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luksemburg" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norwegia" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Belanda" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polandia" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugis (Brasil)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugis" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Rumania" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Rusia" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Slovakia" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Slovenia" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Serbia" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Swedia" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turki" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ukraina" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Mandarin Sederhana" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/it_IT/LC_MESSAGES/django.po b/src/locale/it_IT/LC_MESSAGES/django.po index d6a156031..66991d16c 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-04-04 00:32\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -200,7 +200,7 @@ msgstr "" #: documents/models.py:212 msgid "The number of pages of the document." -msgstr "" +msgstr "Numero di pagine del documento." #: documents/models.py:216 documents/models.py:630 documents/models.py:668 #: documents/models.py:739 documents/models.py:797 @@ -938,11 +938,11 @@ msgstr "Usa parametri" #: documents/models.py:1127 msgid "send as JSON" -msgstr "" +msgstr "invia come JSON" #: documents/models.py:1131 msgid "webhook parameters" -msgstr "" +msgstr "parametri del webhook" #: documents/models.py:1134 msgid "The parameters to send with the webhook URL if body not used." @@ -1223,28 +1223,28 @@ msgstr "Accedi" msgid "Don't have an account yet? Sign up" msgstr "Non hai ancora un account? Registrati" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Nome utente" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Password" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Accedi" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "oppure accedi con" @@ -1317,21 +1317,25 @@ msgstr "La tua nuova password è stata impostata. Ora puoi effettuare il Sign in" msgstr "Hai già un account? Accedi" -#: documents/templates/account/signup.html:16 +#: 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 "Email (opzionale)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Password (ripeti)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Registrati" @@ -1556,139 +1560,139 @@ msgstr "Logo applicazione" msgid "paperless application settings" msgstr "impostazioni dell'applicazione paperless" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Inglese (US)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arabo" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Africano" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Bielorusso" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Bulgaro" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Catalano" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Ceco" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Danese" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Tedesco" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Greco" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Inglese (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Spagnolo" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Finlandese" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Francese" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Ungherese" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italiano" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Giapponese" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "Coreano" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Lussemburghese" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norvegese" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Olandese" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polacco" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portoghese (Brasile)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portoghese" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Rumeno" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Russo" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Slovacco" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Sloveno" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Serbo" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Svedese" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turco" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ucraino" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Cinese semplificato" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/ja_JP/LC_MESSAGES/django.po b/src/locale/ja_JP/LC_MESSAGES/django.po index c89d10fb9..97d3f6271 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-31 12:13\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Language: ja_JP\n" @@ -1188,7 +1188,7 @@ msgstr "Paperless-ngxアカウントが非アクティブです" #: documents/templates/account/account_inactive.html:9 msgid "Account inactive." -msgstr "" +msgstr "アカウントが非アクティブです。" #: documents/templates/account/account_inactive.html:14 msgid "This account is inactive." @@ -1223,28 +1223,28 @@ msgstr "ログインしてください。" msgid "Don't have an account yet? Sign up" msgstr "まだアカウントをお持ちではありませんか? 登録" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "パスワード" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "ログイン" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "パスワードをお忘れですか?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "または次の方法でログイン" @@ -1317,21 +1317,25 @@ msgstr "新しいパスワードがセットされました。Sign in" msgstr "アカウントをお持ちですか? ログイン" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "パスワード (確認)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "登録" @@ -1556,139 +1560,139 @@ msgstr "アプリケーションロゴ" msgid "paperless application settings" msgstr "Paperless アプリケーションの設定" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "英語 (米国)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "アラビア語" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "アフリカーンス語" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "ベラルーシ語" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "ブルガリア語" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "カタロニア語" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "チェコ語" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "デンマーク語" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "ドイツ語" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "ギリシャ語" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "英語 (英国)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "スペイン語" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "フィンランド語" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "フランス語" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "ハンガリー語" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "イタリア語" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "日本語" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "韓国語" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "ルクセンブルク語" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "ノルウェー語" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "オランダ語" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "ポーランド語" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "ポルトガル語 (ブラジル)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "ポルトガル語" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "ルーマニア語" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "ロシア語" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "スロバキア語" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "スロベニア語" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "セルビア語" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "スウェーデン語" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "トルコ語" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "ウクライナ語" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "中国語 (簡体字)" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "中国語 (繁体)" diff --git a/src/locale/ko_KR/LC_MESSAGES/django.po b/src/locale/ko_KR/LC_MESSAGES/django.po index b7bb9ca01..a9453094b 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" @@ -1223,28 +1223,28 @@ msgstr "로그인해주세요." msgid "Don't have an account yet? Sign up" msgstr "아직 계정이 없나요? Sign up" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "비밀번호" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "로그인" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "비밀번호를 잊으셨나요?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "또는 다음에서 로그인하세요" @@ -1317,21 +1317,25 @@ msgstr "새로운 비밀번호로 변경되었습니다. Sign in" msgstr "이미 계정을 가지고 계십니까? 그렇다면 로그인 하세요." -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "암호(다시 입력)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "가입하기" @@ -1556,139 +1560,139 @@ msgstr "애플리케이션 로고" msgid "paperless application settings" msgstr "페이퍼리스 애플리케이션 설정" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "영어 (미국)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "아랍어" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "아프리칸스어" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "벨라루스어" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "불가리어" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "카탈로니아어" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "체코어" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "덴마크어" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "독일어" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "그리스어" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "영어 (영국)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "스페인어" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "핀란드어" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "프랑스어" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "헝가리어" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "이탈리아어" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "일본어" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "한국어" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "룩셈부르크어" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "노르웨이어" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "네덜란드어" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "폴란드어" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "포르투갈어 (브라질)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "포르투갈어" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "루마니아어" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "러시아어" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "슬로바키아어" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "슬로베니아어" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "세르비아어" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "스웨덴어" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "튀르키예어" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "우크라이나어" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "중국어 간체" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/lb_LU/LC_MESSAGES/django.po b/src/locale/lb_LU/LC_MESSAGES/django.po index d61137483..5b827ef68 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Luxembourgish\n" "Language: lb_LU\n" @@ -1222,28 +1222,28 @@ msgstr "W. e. g. umellen." msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Benotzernumm" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Passwuert" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Umellen" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "" msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "" @@ -1555,139 +1559,139 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Englesch (USA)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Belarusesch" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Tschechesch" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Dänesch" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Däitsch" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Englesch (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Spuenesch" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Franséisch" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italienesch" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Lëtzebuergesch" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Hollännesch" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polnesch" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugisesch (Brasilien)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugisesch" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Rumänesch" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Russesch" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Slowenesch" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Serbesch" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Schwedesch" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Tierkesch" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Chinesesch (Vereinfacht)" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/lt_LT/LC_MESSAGES/django.po b/src/locale/lt_LT/LC_MESSAGES/django.po index 6f32b528b..781a1b2c3 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Lithuanian\n" "Language: lt_LT\n" @@ -1222,28 +1222,28 @@ msgstr "" msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "" msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "" @@ -1555,139 +1559,139 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/lv_LV/LC_MESSAGES/django.po b/src/locale/lv_LV/LC_MESSAGES/django.po index 46915d6f8..9e2419292 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Latvian\n" "Language: lv_LV\n" @@ -1222,28 +1222,28 @@ msgstr "Lūdzu, pierakstieties." msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Lietotājvārds" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Parole" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Pieteikties" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Aizmirsāt paroli?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "" msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "" @@ -1555,139 +1559,139 @@ msgstr "Lietotnes logo" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Angļu (ASV)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arābu" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Āfrikāņu" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Baltkrievu" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Bulgāru" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Kataloniešu" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Čehu" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Dāņu" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Vācu" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Grieķu" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Angļu (ASV)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Spāņu" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Somu" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Franču" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Ungāru" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Itāļu" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Japāņu" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luksemburgiešu" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norvēģu" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Holandiešu" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Poļu" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugāļu (Brazīlija)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugāļu" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Rumāņu" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Krievu" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Slovāku" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Slovēņu" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Sērbu" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Zviedru" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turku" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ukraiņu" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Ķīniešu (vienkāršota)" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/ms_MY/LC_MESSAGES/django.po b/src/locale/ms_MY/LC_MESSAGES/django.po index d31356a3c..28577179f 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Malay\n" "Language: ms_MY\n" @@ -205,7 +205,7 @@ msgstr "" #: documents/models.py:216 documents/models.py:630 documents/models.py:668 #: documents/models.py:739 documents/models.py:797 msgid "created" -msgstr "" +msgstr "dicipta" #: documents/models.py:219 msgid "modified" @@ -213,7 +213,7 @@ msgstr "diubah" #: documents/models.py:226 msgid "storage type" -msgstr "" +msgstr "jenis storan" #: documents/models.py:234 msgid "added" @@ -274,11 +274,11 @@ msgstr "" #: documents/models.py:384 msgid "Title" -msgstr "" +msgstr "Tajuk" #: documents/models.py:385 documents/models.py:942 msgid "Created" -msgstr "" +msgstr "Dicipta" #: documents/models.py:386 documents/models.py:941 msgid "Added" @@ -294,7 +294,7 @@ msgstr "Pengirim" #: documents/models.py:389 msgid "Document Type" -msgstr "" +msgstr "Jenis Dokumen" #: documents/models.py:390 msgid "Storage Path" @@ -302,15 +302,15 @@ msgstr "" #: documents/models.py:391 msgid "Note" -msgstr "" +msgstr "Nota" #: documents/models.py:392 msgid "Owner" -msgstr "" +msgstr "Pemilik" #: documents/models.py:393 msgid "Shared" -msgstr "" +msgstr "Dikongsi" #: documents/models.py:394 msgid "ASN" @@ -358,7 +358,7 @@ msgstr "" #: documents/models.py:447 msgid "title contains" -msgstr "" +msgstr "tajuk mengandungi" #: documents/models.py:448 msgid "content contains" @@ -1222,28 +1222,28 @@ msgstr "" msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "" msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "" @@ -1555,139 +1559,139 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/nl_NL/LC_MESSAGES/django.po b/src/locale/nl_NL/LC_MESSAGES/django.po index 678a5a8b4..21e08d070 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:34\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Language: nl_NL\n" @@ -1223,28 +1223,28 @@ msgstr "Gelieve aan te melden." msgid "Don't have an account yet? Sign up" msgstr "Heb je nog geen account? Registreren" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Gebruikersnaam" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Wachtwoord" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Aanmelden" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "of log in met" @@ -1317,21 +1317,25 @@ msgstr "Je nieuwe wachtwoord is ingesteld. Je kunt nu msgid "Paperless-ngx sign up" msgstr "Paperless-ngx registratie" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "Heb je al een account? Inloggen" -#: documents/templates/account/signup.html:16 +#: 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 "E-mailadres (optioneel)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Wachtwoord (opnieuw)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Registreren" @@ -1556,139 +1560,139 @@ msgstr "Applicatie logo" msgid "paperless application settings" msgstr "paperless applicatie instellingen" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Engels (US)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arabisch" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Afrikaans" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Wit-Russisch" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Bulgaars" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Catalaans" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Tsjechisch" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Deens" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Duits" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Grieks" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Engels (Brits)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Spaans" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Fins" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Frans" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Hongaars" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italiaans" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Japans" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luxemburgs" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Noors" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Nederlands" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Pools" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugees (Brazilië)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugees" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Roemeens" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Russisch" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Slowaaks" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Sloveens" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Servisch" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Zweeds" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turks" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Oekraïens" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Chinees (vereenvoudigd)" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/no_NO/LC_MESSAGES/django.po b/src/locale/no_NO/LC_MESSAGES/django.po index 156fe86d4..5b588f781 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Language: no_NO\n" @@ -55,7 +55,7 @@ msgstr "" #: documents/filters.py:827 msgid "Custom field not found" -msgstr "" +msgstr "Egendefinert felt ble ikke funnet" #: documents/models.py:36 documents/models.py:710 msgid "owner" @@ -196,11 +196,11 @@ msgstr "Sjekksummen av det arkiverte dokumentet." #: documents/models.py:205 msgid "page count" -msgstr "" +msgstr "antall sider" #: documents/models.py:212 msgid "The number of pages of the document." -msgstr "" +msgstr "Antall sider i dokumentet." #: documents/models.py:216 documents/models.py:630 documents/models.py:668 #: documents/models.py:739 documents/models.py:797 @@ -318,7 +318,7 @@ msgstr "ASN" #: documents/models.py:395 msgid "Pages" -msgstr "" +msgstr "Sider" #: documents/models.py:401 msgid "show on dashboard" @@ -526,7 +526,7 @@ msgstr "har ikke egendefinert felt" #: documents/models.py:489 msgid "custom fields query" -msgstr "" +msgstr "egendefinerte felt spørring" #: documents/models.py:490 msgid "created to" @@ -566,15 +566,15 @@ msgstr "filtrer regler" #: documents/models.py:534 msgid "Auto Task" -msgstr "" +msgstr "Automatisk oppgave" #: documents/models.py:535 msgid "Scheduled Task" -msgstr "" +msgstr "Planlagt oppgave" #: documents/models.py:536 msgid "Manual Task" -msgstr "" +msgstr "Manuell oppgave" #: documents/models.py:539 msgid "Consume File" @@ -590,7 +590,7 @@ msgstr "" #: documents/models.py:542 msgid "Index Optimize" -msgstr "" +msgstr "index optimalisering" #: documents/models.py:547 msgid "Task ID" @@ -622,7 +622,7 @@ msgstr "Oppgavenavn" #: documents/models.py:569 msgid "Name of the task that was run" -msgstr "" +msgstr "Navn på oppgaven som ble kjørt" #: documents/models.py:576 msgid "Task State" @@ -666,11 +666,11 @@ msgstr "Dataene returnert av oppgaven" #: documents/models.py:614 msgid "Task Type" -msgstr "" +msgstr "Oppgave type" #: documents/models.py:615 msgid "The type of task that was run" -msgstr "" +msgstr "Type oppgave som ble utført" #: documents/models.py:626 msgid "Note for the document" @@ -722,7 +722,7 @@ msgstr "URL" #: documents/models.py:730 msgid "Date" -msgstr "" +msgstr "Dato" #: documents/models.py:731 msgid "Boolean" @@ -746,7 +746,7 @@ msgstr "Dokument lenke" #: documents/models.py:736 msgid "Select" -msgstr "" +msgstr "Velg" #: documents/models.py:748 msgid "data type" @@ -790,7 +790,7 @@ msgstr "Dokument oppdatert" #: documents/models.py:932 msgid "Scheduled" -msgstr "" +msgstr "Planlagt" #: documents/models.py:935 msgid "Consume Folder" @@ -806,15 +806,15 @@ msgstr "Epost-henting" #: documents/models.py:938 msgid "Web UI" -msgstr "" +msgstr "Web UI" #: documents/models.py:943 msgid "Modified" -msgstr "" +msgstr "Endret" #: documents/models.py:944 msgid "Custom Field" -msgstr "" +msgstr "Egendefinerte felt" #: documents/models.py:947 msgid "Workflow Trigger Type" @@ -898,7 +898,7 @@ msgstr "" #: documents/models.py:1075 msgid "email subject" -msgstr "" +msgstr "e-post emne" #: documents/models.py:1079 msgid "The subject of the email, can include some placeholders, see documentation." @@ -906,7 +906,7 @@ msgstr "" #: documents/models.py:1085 msgid "email body" -msgstr "" +msgstr "epost innhold" #: documents/models.py:1088 msgid "The body (message) of the email, can include some placeholders, see documentation." @@ -1222,28 +1222,28 @@ msgstr "Vennligst logg inn." msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Brukernavn" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Passord" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Logg inn" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Glemt passord?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "Ditt nye passord er satt. Du kan nå logge inn msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "" @@ -1555,139 +1559,139 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Engelsk (US)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arabisk" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Afrikansk" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Hviterussisk" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Katalansk" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Tsjekkisk" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Dansk" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Tysk" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Gresk" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Engelsk (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Spansk" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Finsk" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Fransk" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italiensk" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luxembourgsk" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norsk" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Nederlandsk" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polsk" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugisisk (Brasil)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugisisk" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Rumensk" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Russisk" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Slovakisk" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Slovenian" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Serbisk" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Svensk" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Tyrkisk" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ukrainsk" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Kinesisk forenklet" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/pl_PL/LC_MESSAGES/django.po b/src/locale/pl_PL/LC_MESSAGES/django.po index 34f2df2fb..124d8bd19 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-19 00:32\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -1223,28 +1223,28 @@ msgstr "Proszę się zalogować." msgid "Don't have an account yet? Sign up" msgstr "Nie posiadasz jeszcze konta? Zarejestruj się" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Użytkownik" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Hasło" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Zaloguj się" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Nie pamiętasz hasła?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "lub zaloguj się przez" @@ -1317,21 +1317,25 @@ msgstr "Twoje nowe hasło zostało ustawione. Możesz się teraz Sign in" msgstr "Masz już konto? Zaloguj się" -#: documents/templates/account/signup.html:16 +#: 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 "Adres e-mail (opcjonalny)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Hasło (powtórz)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Zarejestruj się" @@ -1556,139 +1560,139 @@ msgstr "Logo aplikacji" msgid "paperless application settings" msgstr "paperless ustawienia aplikacji" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Angielski (USA)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "arabski" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Afrykanerski" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Białoruski" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Bułgarski" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Kataloński" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Czeski" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Duński" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Niemiecki" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Grecki" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Angielski (Wielka Brytania)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Hiszpański" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Fiński" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Francuski" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Węgierski" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Włoski" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Japoński" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "Koreański" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luksemburski" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norweski" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Holenderski" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polski" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugalski (Brazylia)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugalski" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Rumuński" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Rosyjski" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Słowacki" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Słoweński" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Serbski" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Szwedzki" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turecki" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ukraiński" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Chiński uproszczony" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/pt_BR/LC_MESSAGES/django.po b/src/locale/pt_BR/LC_MESSAGES/django.po index 3969b279b..daf3ed1d0 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -1224,28 +1224,28 @@ msgstr "Por favor, entre na sua conta" msgid "Don't have an account yet? Sign up" msgstr "Ainda não tem uma conta? Registo" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Usuário" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Senha" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Entrar" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Esqueceu sua senha?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "ou conecte-se com" @@ -1318,21 +1318,25 @@ msgstr "Sua nova senha foi definida. Agora você pode msgid "Paperless-ngx sign up" msgstr "Registrar-se no Paperless-ngx" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "Já tem uma conta? U Entrar" -#: documents/templates/account/signup.html:16 +#: 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 "Email (opcional)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Senha (novamente)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Cadastre-se" @@ -1557,139 +1561,139 @@ msgstr "Logo do aplicativo" msgid "paperless application settings" msgstr "configurações do aplicativo paperless" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Inglês (EUA)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Árabe" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Africanês" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Bielorrusso" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Búlgaro" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Catalão" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Tcheco" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Dinamarquês" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Alemão" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Grego" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Inglês (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Espanhol" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Finlandês" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Francês" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Húngaro" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italiano" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Japonês" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "Coreano" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luxemburguês" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norueguês" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Holandês" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polonês" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Português (Brasil)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Português" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Romeno" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Russo" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Eslovaco" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Esloveno" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Sérvio" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Sueco" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turco" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ucraniano" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Chinês Simplificado" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/pt_PT/LC_MESSAGES/django.po b/src/locale/pt_PT/LC_MESSAGES/django.po index 35c4eb8f8..f327322bd 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Language: pt_PT\n" @@ -1223,28 +1223,28 @@ msgstr "Por favor inicie sessão." msgid "Don't have an account yet? Sign up" msgstr "Ainda não tem conta? Regista-se" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Nome de utilizador" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Palavra-passe" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Iniciar sessão" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Esqueceu-se da sua palavra-passe?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "ou inicie sessão com" @@ -1317,21 +1317,25 @@ msgstr "A sua nova senha foi definida. Agora pode entr msgid "Paperless-ngx sign up" msgstr "Registo para Paperless-ngx" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "Já tem conta? Iniciar sessão" -#: documents/templates/account/signup.html:16 +#: 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 "Email (opcional)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Palavra-passe (novamente)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Criar conta" @@ -1556,139 +1560,139 @@ msgstr "Logótipo da aplicação" msgid "paperless application settings" msgstr "configurações do paperless" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Inglês (EUA)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Árabe" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Africano" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Bielorrusso" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Búlgaro" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Catalão" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Checo" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Dinamarquês" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Deutsch" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Grego" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Inglês (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Espanhol" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Finlandês" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Français" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Húngaro" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italiano" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Japonês" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luxemburguês" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norueguês" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Nederlandse" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polaco" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Português (Brasil)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Português" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Romeno" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Russo" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Eslovaco" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Esloveno" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Sérvio" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Sueco" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turco" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ucraniano" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Chinês Simplificado" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/ro_RO/LC_MESSAGES/django.po b/src/locale/ro_RO/LC_MESSAGES/django.po index 266202c70..acd5c85d2 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Language: ro_RO\n" @@ -1222,28 +1222,28 @@ msgstr "Vă rugăm conectați-vă." msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Nume" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Parolă" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Conectare" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "" msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "" @@ -1555,139 +1559,139 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Engleză (Americană)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Cehă" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Daneză" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Germană" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Engleză (Britanică)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Spaniolă" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Franceză" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italiană" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luxemburgheză" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Olandeză" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Poloneză" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugheză (Brazilia)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugheză" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Română" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Rusă" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Suedeză" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/ru_RU/LC_MESSAGES/django.po b/src/locale/ru_RU/LC_MESSAGES/django.po index faa87fd04..01e04066a 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -1222,28 +1222,28 @@ msgstr "Пожалуйста, войдите." msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Пароль" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Вход" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Забыли пароль?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "или войдите в систему через" @@ -1316,21 +1316,25 @@ msgstr "Ваш новый пароль был установлен. Теперь msgid "Paperless-ngx sign up" msgstr "Войти в Paperless-ngx" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Пароль (ещё раз)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Зарегистрироваться" @@ -1555,139 +1559,139 @@ msgstr "Логотип приложения" msgid "paperless application settings" msgstr "настройки приложения paperless" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Английский (США)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Арабский" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Африкаанс" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Белорусский" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Болгарский" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Каталонский" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Чешский" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Датский" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Немецкий" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Греческий" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Английский (Великобритании)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Испанский" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Финский" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Французский" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Венгерский" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Итальянский" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Японский" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Люксембургский" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Норвежский" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Датский" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Польский" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Португальский (Бразилия)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Португальский" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Румынский" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Русский" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Словацкий" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Словенский" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Сербский" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Шведский" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Турецкий" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Украинский" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Китайский упрощенный" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/sk_SK/LC_MESSAGES/django.po b/src/locale/sk_SK/LC_MESSAGES/django.po index 091930d75..5bf339853 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Slovak\n" "Language: sk_SK\n" @@ -1222,28 +1222,28 @@ msgstr "Prihláste sa, prosím." msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Užívateľské meno" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Heslo" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Prihlásiť sa" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "" msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "" @@ -1555,139 +1559,139 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Angličtina (US)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arabčina" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Bieloruština" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Catalan" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Čeština" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Dánčina" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Nemčina" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Angličtina (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Španielčina" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Finnish" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Francúzština" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Taliančina" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luxemburčina" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Holandčina" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polština" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugalčina (Brazília)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugalčina" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Rumunčina" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Ruština" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Slovenčina" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Slovinčina" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Srbčina" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Švédčina" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turečtina" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Čínština (zjednodušená)" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/sl_SI/LC_MESSAGES/django.po b/src/locale/sl_SI/LC_MESSAGES/django.po index 1dd3f3ce0..149deeffa 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "Language: sl_SI\n" @@ -1223,28 +1223,28 @@ msgstr "Prosimo, prijavite se." msgid "Don't have an account yet? Sign up" msgstr "Še nimate računa? Registrirajte se" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Uporabniško ime" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Geslo" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Prijava" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Ste pozabili svoje geslo?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "ali se prijavite preko" @@ -1317,21 +1317,25 @@ msgstr "Vaše novo geslo je bilo nastavljeno. Zdaj se lahko Sign in" msgstr "Že imate račun? Prijavite se" -#: documents/templates/account/signup.html:16 +#: 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 "E-pošta (opcijsko)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Geslo (ponovno)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Registracija" @@ -1556,139 +1560,139 @@ msgstr "Logotip aplikacije" msgid "paperless application settings" msgstr "aplikacijske nastavitve paperless" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Angleščina (ZDA)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arabščina" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Afrikanščina" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Beloruščina" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Bolgarščina" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Katalonščina" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Češčina" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Danščina" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Nemščina" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Grščina" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Angleščina (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Španščina" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Finščina" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Francoščina" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Madžarščina" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italijanščina" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "japonščina" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "Korejščina" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luksemburški" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norveščina" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Nizozemščina" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Poljščina" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugalščina (Brazilija)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugalščina" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Romunščina" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Ruščina" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Slovaščina" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Slovenščina" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Srbščina" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Švedščina" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turščina" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ukrajinščina" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Poenostavljena kitajščina" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/sr_CS/LC_MESSAGES/django.po b/src/locale/sr_CS/LC_MESSAGES/django.po index 45feeec1f..48a02bb74 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-21 12:12\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Serbian (Latin)\n" "Language: sr_CS\n" @@ -1223,28 +1223,28 @@ msgstr "Prijavite se." msgid "Don't have an account yet? Sign up" msgstr "Još nemate nalog? Registrujte se" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Korisničko ime" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Lozinka" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Prijavite se" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Zaboravili ste lozinku?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "ili se prijavite putem" @@ -1317,21 +1317,25 @@ msgstr "Vaša nova lozinka je postavljena. Sada se možeteSign in" msgstr "Već imate nalog? Prijavi se" -#: documents/templates/account/signup.html:16 +#: 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 "Imejl (opciono)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Lozinka (ponovo)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Registruj se" @@ -1556,139 +1560,139 @@ msgstr "Logo aplikacije" msgid "paperless application settings" msgstr "podešavanje paperless aplikacije" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Engleski (US)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arapski" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Afrički" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Beloruski" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Bugarski" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Katalonski" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Češki" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Danski" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Nemački" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Grčki" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Engleski (UK)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Španski" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Finski" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Francuski" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Mađarski" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italijanski" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Japanski" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "Korejski" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luksemburški" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norveški" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Holandski" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Poljski" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugalski (Brazil)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugalski" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Rumunski" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Ruski" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Slovački" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Slovenački" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Srpski" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Švedski" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turski" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ukrajinski" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Kineski pojednostavljen" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "Tradicionalni kineski" diff --git a/src/locale/sv_SE/LC_MESSAGES/django.po b/src/locale/sv_SE/LC_MESSAGES/django.po index f25167fe5..e3baab9a8 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Language: sv_SE\n" @@ -1222,28 +1222,28 @@ msgstr "Vänligen logga in." msgid "Don't have an account yet? Sign up" msgstr "Har du inget konto än? Registrera dig" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Användarnamn" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Lösenord" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Logga in" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Glömt ditt lösenord?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "Ditt nya lösenord har ställts in. Du kan nu msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "Har du redan ett konto? Logga in" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Registrera dig" @@ -1555,139 +1559,139 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Engelska (USA)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arabiska" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Belarusiska" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Bulgariska" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Kataloniska" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Tjeckiska" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Danska" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Tyska" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Grekiska" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Engelska (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Spanska" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Finska" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Franska" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Italienska" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Japanska" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "Koreanska" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Luxemburgiska" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norska" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Holländska" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polska" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portugisiska (Brasilien)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portugisiska" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Rumänska" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Ryska" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Slovakiska" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Slovenska" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Serbiska" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Svenska" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Turkiska" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ukrainiska" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Kinesiska (förenklad)" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/th_TH/LC_MESSAGES/django.po b/src/locale/th_TH/LC_MESSAGES/django.po index bd2b80465..a04657785 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Thai\n" "Language: th_TH\n" @@ -1222,28 +1222,28 @@ msgstr "โปรดเข้าสู่ระบบ" msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "รหัสผ่าน" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "เข้าสู่ระบบ" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "ลืมรหัสผ่าน?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "" msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "มีบัญชีผู้ใช้งานแล้ว? เข้าสู่ระบบ" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "ใส่รหัสผ่าน (อีกครั้ง)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "ลงทะเบียน" @@ -1555,139 +1559,139 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "ภาษาอังกฤษ (สหรัฐฯ)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "ภาษาอาหรับ" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "ภาษาอาฟรีกานส์" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "ภาษาเบลารุส" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "ภาษาคาตาลัน" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "ภาษาเช็ก" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "ภาษาเดนมาร์ก" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "ภาษาเยอรมัน" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "ภาษากรีก" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "ภาษาอังกฤษ (สหราชอาณาจักร)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "ภาษาสเปน" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "ภาษาฟินแลนด์" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "ภาษาฝรั่งเศส" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "ภาษาอิตาลี" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "ภาษาลักเซมเบิร์ก" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "ภาษานอร์เวย์" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "ภาษาดัตช์" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "ภาษาโปแลนด์" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "ภาษาโปรตุเกส (บราซิล)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "ภาษาโปรตุเกส" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "ภาษาโรมาเนีย" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "ภาษารัสเซีย" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "ภาษาสโลวาเกีย" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "ภาษาสโลเวเนีย" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "ภาษาเซอร์เบีย" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "ภาษาสวีเดน" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "ภาษาตุรกี" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "ภาษายูเครน" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "ภาษาจีน (ตัวย่อ)" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po index 2d52e74d8..12ee47fc5 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -1222,28 +1222,28 @@ msgstr "Lütfen oturum açın." msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 #: documents/templates/socialaccount/signup.html:13 msgid "Username" msgstr "Kullanıcı Adı" -#: documents/templates/account/login.html:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Parola" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Oturum aç" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Şifrenizi mi unuttunuz?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "" msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "Bir hesabınız mı var? Giriş yapın" -#: documents/templates/account/signup.html:16 +#: 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 "E-posta(opsiyonel)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "" @@ -1555,139 +1559,139 @@ msgstr "Uygulama logosu" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "İngilizce (Birleşik Devletler)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Arapça" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Afrika dili" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Belarusça" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Bulgarca" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Katalanca" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Çekçe" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Danca" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Almanca" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Yunanca" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "İngilizce (GB)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "İspanyolca" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Fince" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Fransızca" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "İtalyanca" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Lüksemburgca" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norveçce" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Hollandaca" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Polonyaca" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Portekizce (Brezilya)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Portekizce" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Romence" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Rusça" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Slovakça" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Slovakça" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Sırpça" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "İsveççe" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Türkçe" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Ukraynaca" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Basitleştirilmiş Çince" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/uk_UA/LC_MESSAGES/django.po b/src/locale/uk_UA/LC_MESSAGES/django.po index 44a7078bb..015ee28da 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:35\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Language: uk_UA\n" @@ -1223,28 +1223,28 @@ msgstr "Будь ласка, увійдіть." msgid "Don't have an account yet? Sign up" msgstr "Ще не зареєстровані? Зареєструватися" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "Пароль" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "Увійти" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "Забули пароль?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "або увійдіть за допомогою" @@ -1317,21 +1317,25 @@ msgstr "Ваш новий пароль встановлено. Тепер ви msgid "Paperless-ngx sign up" msgstr "Зареєструватись у Paperless-ngx" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "Вже зареєстровані? Увійти" -#: documents/templates/account/signup.html:16 +#: 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 "Email (не обов'язково)" -#: documents/templates/account/signup.html:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "Пароль (повторно)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "Зареєструватись" @@ -1556,139 +1560,139 @@ msgstr "Логотип додатка" msgid "paperless application settings" msgstr "налаштування програми документообігу" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "Англійська (США)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "Арабська" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Африкаанс" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "Білоруська" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "Болгарська" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Каталонська" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "Чеська" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "Данська" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "Німецька" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Грецька" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "Англійська (Велика Британія)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "Іспанська" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "Фінська" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "Французька" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "Угорська" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "Італійська" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "Японська" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "Корейська" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "Люксембурзька" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Норвезька" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "Нідерландська" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "Польська" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "Португальська (Бразилія)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "Португальська" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "Румунська" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "Російська" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "Словацька" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "Словенська" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "Сербська" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "Шведська" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "Турецька" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "Українська" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "Китайська спрощена" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/vi_VN/LC_MESSAGES/django.po b/src/locale/vi_VN/LC_MESSAGES/django.po index 731f99b0d..1440e4988 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-16 12:11\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" @@ -1222,28 +1222,28 @@ msgstr "" msgid "Don't have an account yet? Sign up" msgstr "" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "" @@ -1316,21 +1316,25 @@ msgstr "" msgid "Paperless-ngx sign up" msgstr "" -#: documents/templates/account/signup.html:10 +#: documents/templates/account/signup.html:11 #, python-format msgid "Already have an account? Sign in" msgstr "" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "" @@ -1555,139 +1559,139 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/zh_CN/LC_MESSAGES/django.po b/src/locale/zh_CN/LC_MESSAGES/django.po index 6fbe061fd..74680a18d 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-11 20:34\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-29 17:14\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -1223,28 +1223,28 @@ msgstr "请登录。" msgid "Don't have an account yet? Sign up" msgstr "还没有账户? 注册" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "密码" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "登录" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "忘记密码" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "或者通过以下方式登录" @@ -1317,21 +1317,25 @@ msgstr "你的新密码已经被设置,你现在可以Sign in" msgstr "已经有一个帐户? 登录" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "密码 (再输入一次)" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "注册" @@ -1556,139 +1560,139 @@ msgstr "应用程序图标" msgid "paperless application settings" msgstr "无纸应用设置" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "英语(美国)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "阿拉伯语" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "Afrikaans 荷兰语" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "白俄罗斯语" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "保加利亚语" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "Catalan 加泰罗尼亚语" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "捷克语" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "丹麦语" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "德语" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "Greek 希腊语" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "英语(英国)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "西班牙语" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "已完成" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "法语" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "匈牙利语" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "意大利语" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "日语" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "韩语" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "卢森堡语" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "Norwegian 挪威语" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "荷兰语" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "波兰语" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "葡萄牙语 (巴西)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "葡萄牙语" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "罗马尼亚语" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "俄语" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "斯洛伐克语" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "斯洛语尼亚语" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "塞尔维亚语" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "瑞典语" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "土耳其语" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "乌克兰语" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "简体中文" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "" diff --git a/src/locale/zh_TW/LC_MESSAGES/django.po b/src/locale/zh_TW/LC_MESSAGES/django.po index f227a454c..efd252857 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-03-11 13:33-0700\n" -"PO-Revision-Date: 2025-03-20 00:31\n" +"POT-Creation-Date: 2025-03-26 21:04-0700\n" +"PO-Revision-Date: 2025-03-31 12:13\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Language: zh_TW\n" @@ -1223,28 +1223,28 @@ msgstr "請登入。" msgid "Don't have an account yet? Sign up" msgstr "沒有帳號? 註冊" -#: documents/templates/account/login.html:19 -#: documents/templates/account/signup.html:15 +#: 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:20 -#: documents/templates/account/signup.html:17 +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 msgid "Password" msgstr "密碼" -#: documents/templates/account/login.html:30 +#: documents/templates/account/login.html:36 #: documents/templates/mfa/authenticate.html:23 msgid "Sign in" msgstr "登入" -#: documents/templates/account/login.html:34 +#: documents/templates/account/login.html:40 msgid "Forgot your password?" msgstr "忘記密碼?" -#: documents/templates/account/login.html:45 -#: documents/templates/account/signup.html:49 +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 msgid "or sign in via" msgstr "或通過以下方式登入" @@ -1317,21 +1317,25 @@ msgstr "您的新密碼已設定完成。您現在可以Sign in" msgstr "已經有帳號了?登入" -#: documents/templates/account/signup.html:16 +#: 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:18 +#: documents/templates/account/signup.html:25 msgid "Password (again)" msgstr "再次輸入密碼" -#: documents/templates/account/signup.html:36 +#: documents/templates/account/signup.html:43 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" msgstr "註冊" @@ -1556,139 +1560,139 @@ msgstr "應用程式圖示" msgid "paperless application settings" msgstr "Paperless 應用程式設定" -#: paperless/settings.py:723 +#: paperless/settings.py:722 msgid "English (US)" msgstr "英文(美國)" -#: paperless/settings.py:724 +#: paperless/settings.py:723 msgid "Arabic" msgstr "阿拉伯文" -#: paperless/settings.py:725 +#: paperless/settings.py:724 msgid "Afrikaans" msgstr "南非荷蘭文" -#: paperless/settings.py:726 +#: paperless/settings.py:725 msgid "Belarusian" msgstr "白俄羅斯文" -#: paperless/settings.py:727 +#: paperless/settings.py:726 msgid "Bulgarian" msgstr "保加利亞文" -#: paperless/settings.py:728 +#: paperless/settings.py:727 msgid "Catalan" msgstr "加泰羅尼亞文" -#: paperless/settings.py:729 +#: paperless/settings.py:728 msgid "Czech" msgstr "捷克文" -#: paperless/settings.py:730 +#: paperless/settings.py:729 msgid "Danish" msgstr "丹麥文" -#: paperless/settings.py:731 +#: paperless/settings.py:730 msgid "German" msgstr "德文" -#: paperless/settings.py:732 +#: paperless/settings.py:731 msgid "Greek" msgstr "希臘文" -#: paperless/settings.py:733 +#: paperless/settings.py:732 msgid "English (GB)" msgstr "英文(英國)" -#: paperless/settings.py:734 +#: paperless/settings.py:733 msgid "Spanish" msgstr "西班牙文" -#: paperless/settings.py:735 +#: paperless/settings.py:734 msgid "Finnish" msgstr "芬蘭文" -#: paperless/settings.py:736 +#: paperless/settings.py:735 msgid "French" msgstr "法文" -#: paperless/settings.py:737 +#: paperless/settings.py:736 msgid "Hungarian" msgstr "匈牙利文" -#: paperless/settings.py:738 +#: paperless/settings.py:737 msgid "Italian" msgstr "義大利文" -#: paperless/settings.py:739 +#: paperless/settings.py:738 msgid "Japanese" msgstr "日文" -#: paperless/settings.py:740 +#: paperless/settings.py:739 msgid "Korean" msgstr "韓文" -#: paperless/settings.py:741 +#: paperless/settings.py:740 msgid "Luxembourgish" msgstr "盧森堡文" -#: paperless/settings.py:742 +#: paperless/settings.py:741 msgid "Norwegian" msgstr "挪威文" -#: paperless/settings.py:743 +#: paperless/settings.py:742 msgid "Dutch" msgstr "荷蘭文" -#: paperless/settings.py:744 +#: paperless/settings.py:743 msgid "Polish" msgstr "波蘭文" -#: paperless/settings.py:745 +#: paperless/settings.py:744 msgid "Portuguese (Brazil)" msgstr "葡萄牙文(巴西)" -#: paperless/settings.py:746 +#: paperless/settings.py:745 msgid "Portuguese" msgstr "葡萄牙文" -#: paperless/settings.py:747 +#: paperless/settings.py:746 msgid "Romanian" msgstr "羅馬尼亞文" -#: paperless/settings.py:748 +#: paperless/settings.py:747 msgid "Russian" msgstr "俄文" -#: paperless/settings.py:749 +#: paperless/settings.py:748 msgid "Slovak" msgstr "斯洛伐克文" -#: paperless/settings.py:750 +#: paperless/settings.py:749 msgid "Slovenian" msgstr "斯洛維尼亞文" -#: paperless/settings.py:751 +#: paperless/settings.py:750 msgid "Serbian" msgstr "塞爾維亞文" -#: paperless/settings.py:752 +#: paperless/settings.py:751 msgid "Swedish" msgstr "瑞典文" -#: paperless/settings.py:753 +#: paperless/settings.py:752 msgid "Turkish" msgstr "土耳其文" -#: paperless/settings.py:754 +#: paperless/settings.py:753 msgid "Ukrainian" msgstr "烏克蘭文" -#: paperless/settings.py:755 +#: paperless/settings.py:754 msgid "Chinese Simplified" msgstr "簡體中文" -#: paperless/settings.py:756 +#: paperless/settings.py:755 msgid "Chinese Traditional" msgstr "繁體中文"